Documentation

onLiveEdit

occurs when data was changed in the editor

void onLiveEdit(object state,object editor){ ... };

Parameters

stateobjectan object with 2 properties: 'value' - the new value of the cell,
'old' - the old value of the cell
editorobjectthe editor's object

Example

some.attachEvent("onLiveEdit", function(state, editor, ignoreUpdate){
    webix.notice("Current value: " + state.value);
});

Details

Occurs only if liveEdit mode was used for the editor

Back to top