I have two jQuery.validator.addMethod, named "A" and "B".
Is it possible to set conditional rules on the fields based on different methods? For example:
$("#form2").validate( {
rules: {
inputVal: {
//if condition = true, A:true, else run B:true
}
}
...
});
No, you cannot set different rules based on different conditions within the
.validate()
method. The object literal for each field can only contain a comma separated list ofkey:value
pairs representing the desired methods and parameters.However, you are allowed to conditionally set the parameter for each method using the
depends
property, effectively achieving the same thing by toggling the rule on or off...DEMO: http://jsfiddle.net/nL2sk069/
Otherwise, you could simply write a new method that combines the functionality of methods A & B, and just evaluate your condition there.
DEMO: http://jsfiddle.net/3uheeetx/