I work with smartgwt power version 3.0
I do this code
When I click on newRequestUserButton I want draw a new HLayout in userSection
But when I do this :
userSection.setItems(myHlayout);
The userSection doesn't change.
Should I have to delete the userDetailForm item ? With which method ?
I do this code
Code:
SectionStackSection userSection = new SectionStackSection(userSectionTitle); userSection.setItems(userDetailForm); userSection.setCanCollapse(true); userSection.setExpanded(true); userSection.setControls(newRequestUserButton, newButton, removeButton, saveButton);
But when I do this :
userSection.setItems(myHlayout);
The userSection doesn't change.
Should I have to delete the userDetailForm item ? With which method ?
Comment