Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 1.4 KB

File metadata and controls

19 lines (17 loc) · 1.4 KB

Internal plugin approach

General guidelines

Quick start step by step tutorial

  • Copy the internalPluginSkeleton.js file and rename it to describe your plugin. Let's use myPlugin.js for this example.
  • Change the class name to fit the filename, in our case:
class MyPlugin extends BasePlugin
  • Implement your functionality using the guidelines from the comments,
  • Put your plugin in the src/plugins/myPlugin Handsontable's subdirectory,
  • Open the terminal, navigate to your Handsontable location,
  • Follow this steps to run your build
  • Include the handsontable.full.js file on your website, and you're good to go!