fires after the edit operation is finished
| state |
some.attachEvent("onAfterEditStop", function(state, editor, ignoreUpdate){
if(state.value != state.old){
webix.message("Cell value was changed")
}
});
The value of the ignoreUpdate parameter depends on the way of editor closing. When the editor closes with the editStop method, the record is updated, while the editCancel method doesn't save changes before closing the editor.