fires 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 object |
ignoreUpdate | boolean | indicates whether the cell was updated after editing |
some.attachEvent("onLiveEdit", function(state, editor, ignoreUpdate){
webix.message("Current value: " + state.value);
});
fires only if the liveEdit mode is used for the editor
Back to top