occurs when data was changed in the editor
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 |
some.attachEvent("onLiveEdit", function(state, editor, ignoreUpdate){
webix.notice("Current value: " + state.value);
});
Occurs only if liveEdit mode was used for the editor
Back to top