[]
Initializes a new instance of the UndoStack class.
The DOM element or CSS selector for the DOM elements to be added to UndoStack context. If not provided, the whole document body is added to the context.
The JavaScript object containing initialization data for the UndoStack.
Gets the number of actions currently stored in the UndoStack.
Gets or sets a value that determines whether the UndoStack should monitor the keyboard and handle the undo/redo keys (ctrl+Z/ctrl+Y) automatically.
Gets a value that determines whether the UndoStack is ready to redo an action.
Gets a value that determines whether the UndoStack is ready to undo an action.
Gets or sets a vlue that determines whether the UndoStack is currently disabled.
Gets or sets the maximum number of actions to store in the UndoStack.
The default value for this property is 1,000 actions.
Clears the UndoStack.
Raises the addedAction event.
UndoActionEventArgs that contains the event data.
Raises the {link @addedTarget} event.
AddTargetEventArgs that contains the event data.
Raises the addingAction event.
UndoActionEventArgs that contains the event data.
True if the event was not canceled.
Raises the addingTarget event.
AddTargetEventArgs that contains the event data.
True if the event was not canceled.
Raises the redoingAction event.
UndoActionEventArgs that contains the event data.
True if the event was not canceled.
Raises the redoneAction event.
UndoActionEventArgs that contains the event data.
Raises the stateChanged event.
Raises the undoingAction event.
UndoActionEventArgs that contains the event data.
True if the event was not canceled.
Raises the undoneAction event.
UndoActionEventArgs that contains the event data.
Pushes a new undoable action onto the stack.
UndoableAction to add to the stack.
Redoes the last action undone.
Undoes the last action recorded.
Occurs after an UndoableAction had been added to the stack.
Occurs after an element has been added to the UndoStack context.
Occurs when an UndoableAction is about to be added to the stack.
Occurs when an element is about to be added to the UndoStack context.
Listeners may prevent the element from being added to the context by setting the cancel parameter to true.
Occurs when an UndoableAction is about to be redone.
Occurs after an UndoableAction has been redone.
Occurs when an UndoableAction is about to be undone.
Occurs after an UndoableAction has been undone.
Class that provides undo/redo functionality for input elements and Wijmo controls.