-
Notifications
You must be signed in to change notification settings - Fork 1
custom
jdubs edited this page Oct 23, 2016
·
1 revision
Accommodates custom function validators.
( options ) Includes all optional properties applied to all validators
( func ) Function for validation. Must return true or false.
[[Name]]
spec['Name'].custom(
function() {
var result = spec['Name'].value == 'The Suns';
return result;
},
{ message: "You must type (The Suns)" }
);