Hi Aditya, The problem is that you don't have direct access to the SuggestBox popup.
If you want to see all the possible solutions you should extend the SuggestOracle and implement your own requestSuggestions method (see this link for some nice examples: http://development.lombardi.com/?p=39) In this way yo can simply return all your list, even ignoring the limit. Regards, Carlos. On Aug 12, 10:50 am, Aditya <[email protected]> wrote: > hi, > > I want to show all elements from the suggestoracle whenever > suggestionbox recieves a focus. > > I did some search for it and i found something as follows : > > http://groups.google.com/group/google-web-toolkit/browse_thread/threa... > > Now i m able to recieve Response > > this.getSuggestOracle().requestSuggestions(request, new Callback() { > @Override > public void onSuggestionsReady(Request request, Response response) { > // here I m getting complete list from suggestoracle > } > > }); > > I am able to get list of suggestions in this response but i dnt knw > what should i do next...? > > what should be done with this response how this will help me to > populate suggestions...? > > Thank you. > > -- > Aditya -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
