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
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.