Hello,
I'm trying to make the validation rule work.
Iv'e found that:
and it's working well.
But if I want to use it inside a repeater area with multiplier, it gives me always error.
I'm supposing is waiting for other -N -fields to verify that actually are not there, because if I switch off the multiplier function ( with is working again.
Any suggestion?
Thnks!
I'm trying to make the validation rule work.
Iv'e found that:
jQuery.fn.form.settings.rules.customfn = function(value, param) {
var x = 12;
if (Number(value) < Number(x)) {
return false;
}else{
return true;
}
};
and it's working well.
But if I want to use it inside a repeater area with multiplier, it gives me always error.
I'm supposing is waiting for other -N -fields to verify that actually are not there, because if I switch off the multiplier function ( with is working again.
Any suggestion?
Thnks!