onLiveEdit of EditAbility, Events Webix Docs
fires when data was changed in the editor
void onLiveEdit(object state,object editor,boolean ignoreUpdate);
'old' - the old value of the cell editor
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