npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@reactual/handsontable-pro

v1.14.3

Published

Spreadsheet-like data grid editor

Downloads

8

Readme

Handsontable Pro is a JavaScript/HTML5 UI Spreadsheet component for web apps. It easily integrates with any data source and comes with premium features like Filtering, Nested Headers, Dropdown Menu, Collapsing Columns and Export to File.

This is a commercial, paid software available for evaluation purposes only. To use it in a production environment you need to purchase a license and pass a valid license key in the configuration object.

If you are looking for an open source version, head to Handsontable Community Edition.

Table of contents

  1. Installation
  2. Basic usage
  3. Examples
  4. Features
  5. Screenshot
  6. Resources
  7. Wrappers
  8. Support
  9. Pricing
  10. License key
  11. License

Installation

There are many ways to install Handsontable Pro, but we suggest using npm:

npm install handsontable-pro

Alternative ways to install

  • See the download section on how to install Handsontable Pro using nuget, bower, yarn and more.

Basic usage

Assuming that you have already installed Handsontable Pro, create an empty <div> element that will be turned into a spreadsheet:

<div id="example"></div>

In the next step, pass a reference to that <div> element into the Handsontable constructor and fill the instance with sample data:

var data = [
  ["", "Tesla", "Volvo", "Toyota", "Honda"],
  ["2017", 10, 11, 12, 13],
  ["2018", 20, 11, 14, 13],
  ["2019", 30, 15, 12, 13]
];

var container = document.getElementById('example');
var hot = new Handsontable(container, {
  data: data,
  rowHeaders: true,
  colHeaders: true,
  filters: true,
  dropdownMenu: true
});

Examples

Features

It includes all of the Handsontable Community Edition (CE) features, plus:

  • Filtering
  • Export to file
  • Dropdown menu
  • Nested headers
  • Collapsing columns
  • Hiding rows
  • Hiding columns
  • Trimming rows
  • Column summary
  • Header tooltips
  • Binding rows with headers
  • Formulas (alpha)
  • Nested rows (alpha)
  • Gantt Chart (beta)

See a comparison table

Screenshot

Resources

Wrappers

Handsontable Pro comes with wrappers and directives for most popular frameworks:

Support

Handsontable Pro is supported on a commercial basis. All the suggestions and issues should be sent to [email protected].

Pricing

The pricing page lists all pricing info, and contains links to purchase a new license, or to renew a maintenance plan.

License key

Handsontable Pro requires passing a valid license key in the configuration section. You can find your purchased license key in your account at my.handsontable.com.

An example of what the configuration object should look like:

hot = new Handsontable(container,{
  data: data,
  rowHeaders: true,
  colHeaders: true,
  licenseKey: '00000-00000-00000-00000-00000'
});

Note that the license key is passed as a string so you need to wrap it in quotes ('').

License

Handsontable Pro is released under a commercial license. Learn more

Copyright belong to Handsoncode sp. z o.o.