This question is locked. New answers and comments are not allowed.
Is it possible to modify the response in OnComplete and handle databinding myself? Something like this:
All my attempts to do this have been foiled.
workOrder.onNotesComplete = function (e) {
if (e.name == 'insert') {
var note = e.response.data[0];
workOrder.Notes.push(note);
$('#NotesGrid').data('tGrid').dataBind(workOrder.Notes);
}
};
All my attempts to do this have been foiled.