ignoreUndo of Undo, Methods Webix Docs

StartAPI ReferenceMixinsUndoMethods

calls a function that will be ignored in the undo history track

void ignoreUndo(function function);

function

functionfunction for which undo history track will be disabled

Example

// item adding won't be reverted by undo()
$$("list").ignoreUndo(function(){
    $$("list").addItem({...});
});

See also

  • API

  • Articles

  • Back to top