This question is locked. New answers and comments are not allowed.
Is there a way to disable the clientside validation on the grid or to at least disable the onkeyup and/or onfocusout validation? I have tried using this for the onEdit event but it did not work:
Thanks.
function onEdit (e) { var form = e.form; var settings = $.data(form, 'validator'); settings.onkeyup = false; settings.onfocusout = false;}Thanks.