Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GWT SuggestBox + ListBox Widget

Tags:

widget

gwt

I would like to create a List Box which can provide me suggestions.The exact thing which i need to implement is the browsers navigation widget where we type in the website address.The functionality to implement is like this

when we click on the down arrow ,my list box should provide me the list of previously navigated URLS. Also when we go ahead and type something,the widget should provide me suggestions.

Any suggestions on how to implement this widget would be really great.

Thanks

like image 439
Barry Avatar asked Dec 01 '25 05:12

Barry


2 Answers

My SimpleGWT project's ComboBox widget should be very close to what you describe. However, I would warn you that it was written a couple of years back and hasn't been kept up to date with the latest GWT version. Also, it required a few changes to the SuggestBox class to open up the API that I need. With all that in mind, it is Apache 2 licensed Open Source so it should still be useful to you in implementing your own solution even if you can't use it as it is. Feedback is welcome on the project site.

like image 87
Isaac Truett Avatar answered Dec 07 '25 02:12

Isaac Truett


this simple-gwt can help you but you should develop it on your own

Edited: to make it scrollable check this.

like image 34
Jama A. Avatar answered Dec 07 '25 01:12

Jama A.