Called when user changes a form field.
onChange = function(event)
This event is triggered each time user changes a form field. In the event object you can find
previous and new value of the field. You can add event listener during the object creation:
or any time during run-time:
The event handler is called before the default action of the event is triggered. You can cancel the default action by calling
event.preventDefault(). To perform an action
after the event is fully processed, define event.onComplete function.
See events page in utilities for more details.