Re: help with suggest box

2009-09-22 Thread John Restrepo
Thanks ;) On 16 sep, 23:33, Sripathi Krishnan sripathi.krish...@gmail.com wrote: You would have to write a custom SuggestOracle and pass it to the constructor of your SuggestBox. Your implementation of SuggestOracle would need to implement the requestSuggestions() method. In that method,

help with suggest box

2009-09-16 Thread John Restrepo
Hi, I noticed the gwt suggest box search word by word, for example if I press p it shows me possible or just possible it searches the character in the first word or in the second, my question is: Is there some way to change this? like just search in the first word and not the second. I hope I was

Re: help with suggest box

2009-09-16 Thread Sripathi Krishnan
You would have to write a custom SuggestOracle and pass it to the constructor of your SuggestBox. Your implementation of SuggestOracle would need to implement the requestSuggestions() method. In that method, you can put in whatever logic you want to match strings. --Sri 2009/9/17 John