I have a Kendo Popup Editor for my Kendo Group.
If there are validation errors when the user clicks update, I'd like to perform a jquery action.
I've used the onSave function to do this:
function onSave(e) {
alert("you've clicked save")
}
However, the function is only called when there isn't a validation error message on a field. How can I raise a function when the user clicks save AND there is a validation message.
Thanks