Class: ObserveChanges

ObserveChanges

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.

// 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 returns true than the ObserveChanges#enablePlugin method is called.

Returns: {Boolean}