Documentation

onAfterEditStop

fires after edit operation finished

void onAfterEditStop(object state,object editor,boolean ignoreUpdate){ ... };

Parameters

stateobjectan object with 2 properties: 'value' - the new value of the cell,
'old' - the old value of the cell
editorobjectthe editor's object
ignoreUpdatebooleanspecifies whether the cell was updated after editing

Example

some.attachEvent("onAfterEditStop", function(state, editor, ignoreUpdate){
    if(state.value != state.old){
        webix.notice("Cell value was changed")
    }  
});

See also

Back to top