Prevent the validator() method of a field from trggering

Prevent the validator() method of a field from trggering

scherbaumscherbaum Posts: 6Questions: 3Answers: 0

Hello,

I'm using bubble edit on a table, with all editable fields having validator() methods on the server side. The problem is, that when I try to edit one field, the validator method of another field (unchanged field) is triggering, which will result in an error message. Is there any way to disable validating unchanged fields?
I tried using the submit option as shown next with no luck.

$('#all_apps').on( 'click', 'tbody td.editable', function (e) {
        editor.bubble( this, {
            submit: 'changed'
        } );
    } );

Thanks!

This question has an accepted answers - jump to answer

Answers

Sign In or Register to comment.