submit: 'changed' equivalent for JSON
submit: 'changed' equivalent for JSON
ggerbush
Posts: 7Questions: 3Answers: 0
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
This discussion has been closed.
Answers
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