Button okButton=new Button("OK");
okButton.addEventListener("onClick", new EventListener(){
public void onEvent(Event event) throws Exception {
Warehouse w =new Warehouse();
w.setName(nameBox.getText());
BaseDescription odesc=new BaseDescription();
w.setDescription(odesc);
//Find selected group
OrganizationGroup comp=organizationGroupManager.findByName(groupsCombo.getText()).get(0);
if(nameBox.getText().equals("")){
Messagebox.show("Name is empty!", "Error", Messagebox.YES , null);