Skip to content

ignoreUndo

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

function ignoreUndo(
// function for which undo history track will be disabled
function: function
): void
// item adding won't be reverted by undo()
dgrid.ignoreUndo(function(){
dgrid.add({...});
});