onLiveEdit
fires when data was changed in the editor
void onLiveEdit(object state,object editor,boolean ignoreUpdate);
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 |
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.