Skip to content

Instantly share code, notes, and snippets.

@zenorocha
Last active December 17, 2015 02:29
Show Gist options
  • Save zenorocha/5536516 to your computer and use it in GitHub Desktop.
Save zenorocha/5536516 to your computer and use it in GitHub Desktop.
AlloyUI - Form Validator - MaxLength
YUI().use('aui-form-validator', function(Y) {
var myRules = {
myField: {
maxLength: 50
}
};
new Y.FormValidator({
boundingBox: '#myForm',
rules: myRules
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment