FormPanel formPanelBottom = new FormPanel();
TextField dummyField = new TextField(); //we need to add this to the bottom formPanel
//because otherwise we are not allowed to add buttons to it
dummyField.setVisible(false);
formPanelBottom.add(dummyField);
formPanelBottom.addButton(btnCreate);
formPanelBottom.addButton(btnCancel);
panel.add(formPanel, new AnchorLayoutData("100% 150"));
panel.add(wrappingPanel, new AnchorLayoutData("100% 170"));
panel.add(formPanelBottom, new AnchorLayoutData("100% 20"));