I have created some classes in which it create a bunch of widgets (e.g. label, textbox). I want to create the widget on the fly and add it to a panel. How can I do that.
|
|
|||
|
|
|
Assuming you use HorizontalPanel, VerticalPanel, FlowPanel or some other panel with an add(Wiget) method, you would simply invoke
An alternative may be use the setVisible(boolean) to show and hide widgets instead of adding and removing them.
|
|||
|
|
