Is it possible to draw html contents in vaadin label?
I have texts with <br>
contents. Is it available to let the label to use them?
Yes, you can use the 2 argument constructor of Label
and set the ContentMode
to HTML
.
Something like,
new Label(YOUR_HTML_TEXT, ContentMode.HTML);
From the Javadoc (linked above):
Label component for showing non-editable short texts. The label content can be set to the modes specified by ContentMode
The contents of the label may contain simple formatting:
- Bold
- Italic
- Underlined
- Linebreak
- ...