Editable Datatable - the simplest way to submit changed value only?

For Editable Datatable/Treetable what is the simplest way to submit changes to server?

I enabled DataProcessor (set Save property and enable flag Editable for columns), but it submits not just changed columns, but all the fields, even the ones that were not changed.

What is the simplest way to submit changed value only?

You can use onAfterEditStop event

webix.ui({
  rows:[
    { view:"datatable", autoConfig:true, data:grid_data, 
     editable:true, on:{
       onAfterEditStop:function(state, editor){
         if (state.value != state.old)
            alert(editor.column + " set to "+ state.value);
       }
     }}
  ]
});

http://webix.com/snippet/d9776e35

You will need to replace alert with webix.ajax call in the above snippet;

Thanks.

Thanks… This helped me.