Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vaadin Form TextField multiline caption

I have an Form with many TextField's (Vaadin), each one have very long caption.

Can i make TextField's caption multiline?

like image 398
Dmitry Sh Avatar asked Mar 05 '26 10:03

Dmitry Sh


2 Answers

I don't think you can. Can you use TextArea instead?

Update: Define a custom style in your style.css:

.v-caption-multiline {
    white-space: pre;
}

And then use in in your code to separate the lines by \n:

TextField t = new TextField("A very long caption\nA very long caption ");
t.addStyleName("multiline");
like image 130
tibtof Avatar answered Mar 06 '26 23:03

tibtof


In Vaadin 7, the Panel caption excepts HTML.

Example, <sub>subscript</sub> and <br/> commands.

I don't know about version prior to 7.

like image 44
user3000951 Avatar answered Mar 06 '26 23:03

user3000951