Should I use the change or textInput event to capture user input on a TextInput control? Why?
|
|
|
Neither of these is dispatched when the text is modified via code:
(ignore the word "delete" there -- I just tried it and this event is not dispatched when text is deleted by the user)
You can also use the |
|||||||
|
|
That's a great answer, hasseg. If I had enough rep, I'd up-vote it. Depending on what you're capturing the user input for, you could subclass the TextInput component and override the internal listeners for the change and textInput events. I don't know if there are a lot of reasons you'd want to do this, but I did it recently to deal with a bug in OS X that causes pasted linebreaks to be represented as '\r', instead of '\n'. All you need to do is add the following after your super() call in the constructor of your subclassed object:
And then add the listener methods and the code you want to execute. |
||||
|
|
|
Both Event.CHANGE and TextEvent.TEXT_INPUT events trigger on each character typed. If you want an event that will only trigger a single time for a given TextInput field, use FocusEvent.FOCUS_OUT. Like Event.CHANGE and TextEvent.TEXT_INPUT, this event will only trigger for user input, not for programmatic changes to the value. |
|||||||
|
|
|
||||
|
