SuggestBox with huge amount of records

2010-10-21 Thread Florian Rhomberg
Hello! I need to implement a suggest box. Therefor I found a possibility to create that on this page: http://www.gwtapps.com/doc/html/com.google.gwt.user.client.ui.SuggestBox.html But however I cannot use this code with the oracle because I have more than 7 datas. Therefore I want to

Re: SuggestBox with huge amount of records

2010-10-21 Thread ep
why cant u use it? SuggestOracle allows async fetching of data, please read java doc on this interface com.google.gwt.user.client.ui.SuggestOracle.Suggestion On 21 Okt., 09:09, Florian Rhomberg florian.rhomb...@nettania.at wrote: Hello! I need to implement a suggest box. Therefor I found a

Re: SuggestBox with huge amount of records

2010-10-21 Thread jhulford
It's actually really quite easy. You just need to create your own SuggestOracle that overrides the requestSuggestions method and executes some sort of code to contact your server/database to do the search (GWT-RPC, REST, simple GET request, etc..) then utilizes the Callback's onSuggestionsReady