fires after validation of form fields is finished
name|id | string | the name (or id, if the name is not specified) of the Form control |
value | any | the value to be validated |
isValid | boolean | the result of validation |
form.events.on("AfterValidate", function(name, value, isValid) {
console.log("AfterValidate", name, value, isValid);
});
added in v7.0
Back to top