I have a FormItem to which I have attached both a CustomValidator and a ChangedHandler. I've also setChangeOnKeypress(false). I'm having difficulty understanding the sequence of events. Will the ChangedHandler only be fired after the CustomValidator?
The behavior I'm looking for is this. After the user types a new value in the field, validate the value and then, only if it passes validation, proceed to do some other stuff. Is this the right approach?
The behavior I'm looking for is this. After the user types a new value in the field, validate the value and then, only if it passes validation, proceed to do some other stuff. Is this the right approach?
Comment