I’m trying to validate all required fields and trigger an enable() on a Submit button if validated. My plan was to create a validate() function that runs on each field change, but I’m running into an issue with the order of operations.
Documentation shows that onChange code runs prior to validation when a field value is updated. I’ve tried onBlur and have seen the same behavior. In practice, the means that I have no way to view the validity of the latest changed field. Is there any way to trigger standard validation on a field manually so that I can perform an action based on the validation results?
As a workaround, I could tie the validation to the button click, but I prefer the user experience of having the button disabled until the fields are all completed. I could also perform my own validation, but didn’t want to recreate the wheel if it wasn’t necessary.