Answers

Question and Answer:

  Home  EXT GWT

⟩ How to create custom widgets in GWT?

Create a class that should extends Composite class of GWT.

Inside the constructor you can write you logic to create a widget and call the initWidget method().

Then you can use this class in anywhere in the application and add this widget in any panels.

private static class OptionalTextBox extends Composite implements

ClickHandler {

private TextBox textBox = new TextBox();

private CheckBox checkBox = new CheckBox();

--------

initWidget(panel);

-------

}

 223 views

More Questions for you: