Skip to content

Latest commit

 

History

History

plugins

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Plugins

What is a plugin?

Basically, a plugin is a class which extends the original functionality of Handsontable.

Internal or external?

If you wish to make your own Handsontable build, it's a good idea to choose the internal approach. This way you'll simply need to include a customized handsontable.js (or handsontable.full.js, see the difference) to your website.

However, if you want to add a new functionality to the Handsontable without making your own build, and you don't mind linking more files to your site, you can go with the external approach.

Regardless of the chosen approach, you can access any plugin's instance by calling:

handsontableInstance.getPlugin('nameOfThePlugin');