onLiveEdit

fires when data was changed in the editor

void onLiveEdit(object state,object editor,boolean ignoreUpdate);
stateobjectan object with 2 properties: 'value' - the new value of the cell,
'old' - the old value of the cell
editorobjectthe editor object
ignoreUpdatebooleanindicates whether the cell was updated after editing

Example

some.attachEvent("onLiveEdit", function(state, editor, ignoreUpdate){
    webix.message("Current value: " + state.value);
});

Details

fires only if the liveEdit mode is used for the editor

Back to top