PDA

View Full Version : TabItem + LayoutContainer + DualList - possible issue



fother
22 Jan 2009, 9:15 AM
public void onModuleLoad() {

DualListField list = new DualListField();

LayoutContainer container = new LayoutContainer(new FormLayout());
container.add(list);

TabPanel folder = new TabPanel();
folder.setWidth(450);
folder.setAutoHeight(true);

TabItem shortText = new TabItem("Example");
shortText.add(container);
shortText.setScrollMode(Scroll.AUTO);
folder.add(shortText);

RootPanel.get().add(folder);

}


you can see that the scroll don't appear..

sven
22 Jan 2009, 10:15 AM
Yes, an issue within your designflow;)

fother
23 Jan 2009, 3:04 AM
you can post the correct example?