This example describes the Basics for building the
suggestion box using GWT. The steps involved in Building the Suggestion box are
described below:-
final Label label = new Label("Enter the text in Suggestion box")
Here we are declaring label.
MultiWordSuggestOracle oracle = new MultiWordSuggestOracle()
Here we are creating object of class MultiWordSuggestOracle .MultiWordSuggestOracle
is a class that returns suggestion based on the query.
oracle. add("Cat")
This methods adds a suggestion to the oracle.
Suggest Box box = new SuggestBox(oracle)
Creating Suggest box , A suggest is a text area which displays a pre-configured set of selections.
RootPanel.get().add(label)
By this method we are adding label to the rootpanel.Root panel is a panel to which all other widgets must
be added. it is not created directly.
SuggestBoxex.java
|
Main.gwt.xml
|
Output of the program
|
Recommend the tutorial |


Ask Questions? Discuss: Building Suggestion Box Using GWT View All Comments
Post your Comment