This plugin allows to observe data source changes. By default, the plugin is declared as undefined
, which makes it
disabled. Enabling this plugin switches the table into one-way data binding where changes are applied into the data
source (outside from the table) will be automatically reflected in the table.
- Deprecated
Example
// as a boolean
observeChanges: true,
To configure this plugin see Options#observeChanges
.
Methods
-
destroy()
-
Destroys the plugin instance.
-
disablePlugin()
-
Disables the plugin functionality for this Handsontable instance.
-
enablePlugin()
-
Enables the plugin functionality for this Handsontable instance.
-
isEnabled(){boolean}
-
Checks if the plugin is enabled in the handsontable settings. This method is executed in
Hooks#beforeInit
hook and if it returnstrue
than theObserveChanges#enablePlugin
method is called.Returns: {boolean}