Class: UndoRedo

UndoRedo

handsontable/src/plugins/undoRedo/undoRedo.js, line 12

Handsontable UndoRedo plugin. It allows to undo and redo certain actions done in the table.
Please note, that not all actions are currently undo-able.

Example
...
undo: true
...

Methods

handsontable/src/plugins/undoRedo/undoRedo.js, line 440

staticUndoRedo.CellAlignmentAction()

Cell alignment action.

handsontable/src/plugins/undoRedo/undoRedo.js, line 251

staticUndoRedo.ChangeAction()

Change action.

handsontable/src/plugins/undoRedo/undoRedo.js, line 348

staticUndoRedo.CreateColumnAction()

Create column action.

handsontable/src/plugins/undoRedo/undoRedo.js, line 302

staticUndoRedo.CreateRowAction()

Create row action.

handsontable/src/plugins/undoRedo/undoRedo.js, line 469

staticUndoRedo.FiltersAction()

Filters action.

handsontable/src/plugins/undoRedo/undoRedo.js, line 367

staticUndoRedo.RemoveColumnAction()

Remove column action.

handsontable/src/plugins/undoRedo/undoRedo.js, line 328

staticUndoRedo.RemoveRowAction()

Remove row action.

handsontable/src/plugins/undoRedo/undoRedo.js, line 551

staticUndoRedo.RowMoveAction()

ManualRowMove action.

handsontable/src/plugins/undoRedo/undoRedo.js, line 233

clear()

Clears undo history.

handsontable/src/plugins/undoRedo/undoRedo.js, line 222

isRedoAvailable(){Boolean}

Check if redo action is available.

Returns: {Boolean} Return true if redo can be performed, false otherwise.
handsontable/src/plugins/undoRedo/undoRedo.js, line 211

isUndoAvailable(){Boolean}

Check if undo action is available.

Returns: {Boolean} Return true if undo can be performed, false otherwise
handsontable/src/plugins/undoRedo/undoRedo.js, line 182

redo()

Redo edit (used to reverse an undo).

handsontable/src/plugins/undoRedo/undoRedo.js, line 153

undo()

Undo last edit.