0

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.

JDT
  • 109
  • 1
  • 2
  • 10

1 Answers1

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