vote up 0 vote down star

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.

flag

62% accept rate
Is your class extend Composite or any other container? If so dont forget to call initWidget. Can you post your code – dkberktas Nov 6 at 16:04

1 Answer

vote up 4 vote down

Assuming you use HorizontalPanel, VerticalPanel, FlowPanel or some other panel with an add(Wiget) method, you would simply invoke add(myWidget);

final VerticalPanel panel = new VerticalPanel();

final Button sendButton = new Button("Add widget");
panel.add(sendButton);
sendButton.addClickHandler(new ClickHandler() {

    @Override
    public void onClick(ClickEvent event) {
    	panel.add(new Label(new Date().toString()));
    }
});

RootPanel.get().add(panel);

An alternative may be use the setVisible(boolean) to show and hide widgets instead of adding and removing them.

final VerticalPanel panel = new VerticalPanel();

final Button sendButton = new Button("Toggle visibility");
panel.add(sendButton);

final Label label = new Label(new Date().toString());
panel.add(label);

sendButton.addClickHandler(new ClickHandler() {

    @Override
    public void onClick(ClickEvent event) {
    	label.setVisible(!label.isVisible());
    }
});

RootPanel.get().add(panel);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.