Hi,
I have labels inside a FlowLayout and I want them to be wrapped to the next line of the layout and not on the same line.
What I mean is that if I have 3 labels in the first line and the third label does not fit the line, I am getting the first attached picture (labels1.png).
What I need is to have the second attached picture (labels2.png).
Label1 = Label1
Label2 = Label2
Label3 = this is the third label testing
The first case is by using label.setWrap(true);
I also tried flowLayout.setAutoWrapLines(true); but it did not work, it returned all the third label to line 2.
Any idea on how to do this??
I am using:
SmartGWT 1.3 revision 800
GWT 1.6.4
IE 7
Thanks
I have labels inside a FlowLayout and I want them to be wrapped to the next line of the layout and not on the same line.
What I mean is that if I have 3 labels in the first line and the third label does not fit the line, I am getting the first attached picture (labels1.png).
What I need is to have the second attached picture (labels2.png).
Label1 = Label1
Label2 = Label2
Label3 = this is the third label testing
The first case is by using label.setWrap(true);
I also tried flowLayout.setAutoWrapLines(true); but it did not work, it returned all the third label to line 2.
Any idea on how to do this??
I am using:
SmartGWT 1.3 revision 800
GWT 1.6.4
IE 7
Thanks
Comment