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
Example
Section titled “Example”// item adding won't be reverted by undo()dgrid.ignoreUndo(function(){ dgrid.add({...});});