EXT-GWT Question:

How to create custom widgets in GWT?

Tweet Share WhatsApp

Answer:

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);
-------
}

Download EXT GWT PDF Read All 32 EXT GWT Questions
Previous QuestionNext Question
What are the GWT Panels?Explain Code of entry point with onModuleLoad where split out is working?