submit: 'changed' equivalent for JSON

submit: 'changed' equivalent for JSON

ggerbushggerbush Posts: 7Questions: 3Answers: 0
edited May 2018 in Free community support

I am currently sending a JSON on submit using

contentType: 'application/json',
data: function (d) {
       var tmp = d['data'];
       d = tmp;
       return JSON.stringify(d);
},

I was wondering if there is a way to only return the fields that have been changed in the JSON the same way that is default for the form data .

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 61,759Questions: 1Answers: 10,111 Site admin
    Answer ✓

    Currently no I'm afraid. Editor always expects the full data row from the server-side.

    This is unquestionably a limitation in Editor and one that we are going to resolve for v1.8!

    Allan

This discussion has been closed.