Form widgetList = new Form();
widgetList.setHeader(new Label("Contact Data"));
// lets put in some widgets
widgetList.add(new FormEntry("Firstname", new MTextBox()));
widgetList.add(new FormEntry("Lastname", new MTextBox()));
widgetList.add(new FormEntry("Job Title", new MTextBox()));
container.add(widgetList);
scrollPanel.setScrollingEnabledX(false);
scrollPanel.setWidget(container);