Re: SuggestBox and the underlying TextBox

2014-11-28 Thread Thomas Broyer
I've done some really crappy and brittle code in an app where we delay the check for a few milliseconds when triggered by ValueChangeEvent, to let the time for the SelectionEvent to possibly be triggered. But remember that this is a *suggest* box, not a select box with type-ahead; it gives

Re: SuggestBox and the underlying TextBox

2014-11-28 Thread ckuetbach
Thanks for the anwser, I will take a look at the arcbee-project. I think I found another trick to make the Suggestbox do what I want (There is no need for timer or delays):

SuggestBox and the underlying TextBox

2014-11-27 Thread ckuetbach
Hello, I have some trouble with the SuggestBox. There are at least two Hadler at the SuggestBox: - ValueChangeHandler - SelectionHandler If I enter a Text into the SuggestBox and unfocus it, I get the ValueChangeEvent, with the current Value (I need to validate the Input at this moment) If