This question is locked. New answers and comments are not allowed.
This is straight forward but the callback is never hit.
$("#form1").kendoValidator({
validate: function(e) {
debugger
console.log("valid" + e.valid);
}
}).validate();
Can anybody help me on this (Yes the form exists)?
Also, shouldn't this also be hit on blur?
$("#form1").kendoValidator({
validate: function(e) {
debugger
console.log("valid" + e.valid);
}
}).validate();
Can anybody help me on this (Yes the form exists)?
Also, shouldn't this also be hit on blur?