For a field, validator framework will return with error message after the 1st condition fails. For example, below it will not evaluate mask if minlength check fails.
<field property="password" depends="required,minlength,mask>
For a project I am working on, I have a requirement to display all the error messages for a field when an user submits the form.
Any ideas?
Thanks a lot !