This page covers a next version of Handsontable, and is not published yet.

This page covers a non-latest version of Handsontable.

# BasePlugin

# Description

# Methods

# addHook

Source code (opens new window)

basePlugin.addHook(name, callback)

Add listener to plugin hooks system.

Param Type Description
name string The hook name.
callback function The listener function to add.

# callOnPluginsReady

Source code (opens new window)

basePlugin.callOnPluginsReady(callback)

Register function which will be immediately called after all plugins initialized.

Param Type Description
callback function The listener function to call.

# clearHooks

Source code (opens new window)

basePlugin.clearHooks()

Clear all hooks.

# destroy

Source code (opens new window)

basePlugin.destroy()

Destroy plugin.

# disablePlugin

Source code (opens new window)

basePlugin.disablePlugin()

Disable plugin for this Handsontable instance.

# enablePlugin

Source code (opens new window)

basePlugin.enablePlugin()

Enable plugin for this Handsontable instance.

# removeHooks

Source code (opens new window)

basePlugin.removeHooks(name)

Remove all hooks listeners by hook name.

Param Type Description
name string The hook name.
Last Updated: Mar 27, 2024