Hi all,
I’m trying to get an event handler called whenever the user types something in a TextField. In this particular case, it’s a secure password TextField. The event should simply fire after every change.
I’ve tried:
<TextField propertychange="{{ onChange }}" ... />
<TextField propertyChange="{{ onChange }}" ... />
<TextField change="{{ onChange }}" ... />
<TextField onChange="{{ onChange }}" ... />
but nothing works.
Anybody any ideas?
Thanks!