I have a form that should conditionally enable/disable the submit button. Currently I have to add individual handlers to every field to trigger a validation function. It would be great to have a form.on('change', ...) event that is called every time any field is updated.
Context
I have a form that should conditionally enable/disable the submit button. Currently I have to add individual handlers to every field to trigger a validation function. It would be great to have a
form.on('change', ...)
event that is called every time any field is updated.