I am having a FlowPanel with Float Left set in GWT inside a ScrollPanel. I want to enforce that instead of wrapping the new content to next line it gets added horizontally into FlowPanel and Scrollbar appears.
Asked
Active
Viewed 81 times
1 Answers
0
Instead you can do
Verticalpanel v= new verticalpanel;
v.add(flowpanel);//styles on flow panel
v.add(morecontent);
scrollpanel.setWidget(v);

Suresh Atta
- 120,458
- 37
- 198
- 307