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
For example, if an input has validate-alphanum followed by maxLength:10 validators. Validation will pass for non-alphanumeric inputs that aren't longer than 10 characters. If the order of the validators is reversed, the opposite behavior applies. In that case, validation would pass for anything alphanumeric, regardless of character length.
For example, if an input has validate-alphanum followed by maxLength:10 validators. Validation will pass for non-alphanumeric inputs that aren't longer than 10 characters. If the order of the validators is reversed, the opposite behavior applies. In that case, validation would pass for anything alphanumeric, regardless of character length.
Examples:
Form.Validator.Tips with validate-alphanum first: http://jsfiddle.net/LdFfA/9/
Form.Validator.Tips with validate-alphanum second http://jsfiddle.net/LdFfA/15/
Form.Validator.Inline working correctly: http://jsfiddle.net/LdFfA/14/
The text was updated successfully, but these errors were encountered: