Hi,
I understand that I can edit only one field in an inline edit call. On the presubmit event, I am wanting to know which column, or field is being updated. I am trying to use modifier() but it gives me the complete object. I want to know how to derive the field name from it.
Some excerpts from my code:
$('#dataTable').on('click', 'tbody td.editable', function (e) {
editor.inline(this, {
submit: 'allIfChanged'
});
});
editor.on('preSubmit', function (e, o, action) {
console.table(editor.modifier());
/* Is there any api like below code?
//console.log(editor.modifier().fieldName());
//console.log(editor.modifier().column());
*/
});