awa.mvc.ModelRules.custom Class
Extends awa.mvc.ModelRule
Defined in:
Module: awa.mvc.ModelRules
/var/www/azaleahealth.com/branches/docs/source_repo/awa/resources/apps/js/awa/mvc/ModelRules.js:88
Allows for custom rules to be defined. Custom rules MUST define a method and errorMessage in the rule config
pat_email: {
rules: {
custom: {
error: "I just don't like you",
method: function(val){
if(val == 'someoneIhate@crappydomain.com'){
return false;
}
}
}
}
}