fires after edit operation finished
state | object | an object with 2 properties: 'value' - the new value of the cell, 'old' - the old value of the cell |
editor | object | the editor's object |
ignoreUpdate | boolean | specifies whether the cell was updated after editing |
some.attachEvent("onAfterEditStop", function(state, editor, ignoreUpdate){
if(state.value != state.old){
webix.notice("Cell value was changed")
}
});