ignoreUndo
calls a function that will be ignored in the undo history track
void ignoreUndo(function function);
function | function for which undo history track will be disabled |
Example
// item adding won't be reverted by undo()
$$("list").ignoreUndo(function(){
$$("list").addItem({...});
});
See also
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.