The "undo" functionality is part of the Fluid framework. It can be used to provide undo support for any component that bears a model. Currently, the Fluid components that support Undo are: This page discribes: - how to enable undo on components that support it, and
- how to build undo support into a component that you are creating.
Enabling Undo on Components that Support itThere are two ways to enable Undo on components that support it: - Specify the undo decorator as an option to the component creation
- Manually create the undo decorator
Using the componentDecorators optionThe simplest way to enable Undo functionality on a component that supports it is to use the componentDecorators option. Warning |
---|
This section is currently incorrect. |
Option Name | Value |
---|
componentDecorators | "fluid.undoDecorator" |
|