You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I have a field, lets say email, which has the required rule and calls a remote validation to make sure the email doesn't exist.
So I call validator.validate() to validate all the fields. When a field has a remote validation it is first checked to see that it passed regular validations first before the remote validation is validated. If the field fails regular validations it never executes the callback that it normally would for the remote validation which in turn never increments completedValidationsCount which in turn never calls the completion finished function and then never calls the delegate function validationFailed.
This then throws things off oddly too because completedValidationsCount never gets reset back to 0.
EDIT:
I also added some thoughts to the remote validation stuff that I never heard back on which is completely my fault because it took me so long to get back to that. I am so sorry it took so long. Work was completely crazy. I really apologize about that. #94
The text was updated successfully, but these errors were encountered:
If I have a field, lets say email, which has the required rule and calls a remote validation to make sure the email doesn't exist.
So I call validator.validate() to validate all the fields. When a field has a remote validation it is first checked to see that it passed regular validations first before the remote validation is validated. If the field fails regular validations it never executes the callback that it normally would for the remote validation which in turn never increments completedValidationsCount which in turn never calls the completion finished function and then never calls the delegate function validationFailed.
This then throws things off oddly too because completedValidationsCount never gets reset back to 0.
EDIT:
I also added some thoughts to the remote validation stuff that I never heard back on which is completely my fault because it took me so long to get back to that. I am so sorry it took so long. Work was completely crazy. I really apologize about that.
#94
The text was updated successfully, but these errors were encountered: