Any way to submit changes to just one field?

Any way to submit changes to just one field?

abarnesabarnes Posts: 16Questions: 5Answers: 0

Is there a way in bubble edit to just submit changes to that field? I have bubble set up to individual fields. Sometimes when I change one field it updates another that I don't wont updated yet

Answers

  • colincolin Posts: 15,240Questions: 1Answers: 2,599

    Hi @abarnes ,

    You can submit only changes using the form-options - like this:

       $('#example').on( 'click', 'tbody td:not(:first-child)', function (e) {
           editor.bubble( this, {
               submit: 'changed'
           } );
       } );
    

    If you are changing other fields though, they will get pushed to the server too.

    Cheers,

    Colin

This discussion has been closed.