Document editor tracks the history of all editing actions done in the document, which allows undo and redo functionality.
Inject the EditorHistory
module in your application to provide history preservation functionality for DocumentEditor
. Refer to the following code example.
<ejs-documenteditor isReadOnly=false enableEditor=true enableSelection=true enableSfdtExport=true id="container"></ejs-documenteditor>
<script>
var documenteditor;
document.addEventListener('DOMContentLoaded', function () {
documenteditor = document.getElementById("container").ej2_instances[0];
documenteditor.enableEditorHistory = true;
});
</script>
You can enable or disable history preservation for a document editor instance any time using the enableEditorHistory
property. Refer to the following sample code.
editor.enableEditorHistory = false;
You can perform undo and redo by CTRL+Z
and CTRL+Y
keyboard shortcuts. Document editor exposes API to do it programmatically.
To undo the last editing operation in document editor, refer to the following sample code.
editor.editorHistory.undo();
To redo the last undone action, refer to the following code example.
editor.editorHistory.redo();
History of editing actions will be maintained in stack, so that the last item will be reverted first. By default, document editor limits the size of undo and redo stacks to 500 each respectively. However, you can customize this limit. Refer to the following sample code.
editor.editorHistory.undoLimit = 400;
editor.editorHistory.redoLimit = 400;