# handsontable **Repository Path**: mirrors_handsontable/handsontable ## Basic Information - **Project Name**: handsontable - **Description**: JavaScript Data Grid / Data Table with a Spreadsheet Look & Feel. Works with React, Angular, and Vue. Supported by the Handsontable team ⚡ - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: develop - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 1 - **Created**: 2020-08-08 - **Last Updated**: 2025-09-13 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README


Logo of Handsontable data grid

Handsontable is a JavaScript Data Grid with a spreadsheet-like look and feel.

Use it with JavaScript, TypeScript, or frameworks such as React, Angular, and Vue. With its spreadsheet-like editing features, it’s perfect for building data-rich internal apps. It allows users to enter, edit, validate, and process data from various sources. Common use cases include resource planning software (ERP), inventory management systems, digital platforms, and data modeling applications.

Website   —   Documentation   —   Themes   —   API   —   Community
[![NPM version](https://img.shields.io/npm/v/handsontable?style=for-the-badge)](https://npmjs.com/package/handsontable) [![Total downloads](https://img.shields.io/npm/dt/handsontable.svg?style=for-the-badge)](https://npmjs.com/package/handsontable) [![Monthly downloads](https://img.shields.io/npm/dm/handsontable.svg?style=for-the-badge)](https://npmjs.com/package/handsontable) [![Contributors](https://img.shields.io/github/contributors/handsontable/handsontable?style=for-the-badge)](https://github.com/handsontable/handsontable/graphs/contributors)
[![CI status](https://github.com/handsontable/handsontable/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/handsontable/handsontable/actions/workflows/test.yml?query=branch%3Amaster) [![Quality gate status](https://sonarcloud.io/api/project_badges/measure?project=handsontable_handsontable&metric=alert_status)](https://sonarcloud.io/dashboard?id=handsontable_handsontable) [![FOSSA status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fhandsontable%2Fhandsontable.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fhandsontable%2Fhandsontable?ref=badge_shield)
JavaScript data grid preview
## ✨ Key Features   ✅  [Built-in themes](https://handsontable.com/docs/themes/)
  ✅  [Flexible API](https://handsontable.com/docs/api/)
  ✅  [Virtualization](https://handsontable.com/docs/row-virtualization/)
  ✅  [IME support](https://handsontable.com/docs/ime-support/)
  ✅  [Internationalization](https://handsontable.com/docs/language/)
  ✅  [RTL support](https://handsontable.com/docs/layout-direction/)
  ✅  [Accessibility](https://handsontable.com/docs/accessibility/)
  ✅  [Keyboard shortcuts](https://handsontable.com/docs/keyboard-shortcuts/)
  ✅  [Sorting data](https://handsontable.com/docs/rows-sorting/)
  ✅  [Filtering data](https://handsontable.com/docs/column-filter/)
  ✅  [400 built-in formulas](https://handsontable.com/docs/formula-calculation/)
  ✅  [Configurable selection](https://handsontable.com/docs/selection/)
  ✅  [Data validation](https://handsontable.com/docs/cell-validator/)
  ✅  [Conditional formatting](https://handsontable.com/docs/conditional-formatting/)
  ✅  [Merged cells](https://handsontable.com/docs/merge-cells/)
  ✅  [Frozen rows and columns](https://handsontable.com/docs/column-freezing/)
  ✅  [Hiding rows and columns](https://handsontable.com/docs/column-hiding/)
  ✅  [Right-click context menu](https://handsontable.com/docs/context-menu/)

## 🪄 Installation Below, you'll find the installation guide for the JavaScript component. If you're using a specific framework, refer to its dedicated wrapper for installation instructions: - React - Angular Angular - Vue Vue --- ### Install with npm You can also use [Yarn](https://yarnpkg.com/package/handsontable), [NuGet](https://www.nuget.org/packages/Handsontable) or load the package from [CDN](https://jsdelivr.com/package/npm/handsontable). ```bash npm install handsontable ``` ### Provide an HTML container ```html
``` ### Setup ```js import Handsontable from 'handsontable'; // Base CSS rules import 'handsontable/styles/handsontable.min.css'; // Main theme variables import 'handsontable/styles/ht-theme-main.min.css'; const element = document.getElementById('handsontable-grid'); new Handsontable(element, { // theme name with obligatory ht-theme-* prefix themeName: 'ht-theme-main-dark-auto', // other options data: [ { company: 'Tagcat', country: 'United Kingdom', rating: 4.4 }, { company: 'Zoomzone', country: 'Japan', rating: 4.5 }, { company: 'Meeveo', country: 'United States', rating: 4.6 }, ], columns: [ { data: 'company', title: 'Company', width: 100 }, { data: 'country', title: 'Country', width: 170, type: 'dropdown', source: ['United Kingdom', 'Japan', 'United States'] }, { data: 'rating', title: 'Rating', width: 100, type: 'numeric' }, ], rowHeaders: true, navigableHeaders: true, tabNavigation: true, multiColumnSorting: true, headerClassName: 'htLeft', licenseKey: 'non-commercial-and-evaluation', }); ``` [![Static Badge](https://img.shields.io/badge/Live%20demo%20on%20StackBlitz-1a42e8?style=for-the-badge)](https://stackblitz.com/edit/handsontable-readme-example?file=src%2Fmain.js) ### CDN-based setup
  Show/Hide code
If your environment does not support imports, you can use the code below to quickly set up and run a data grid with basic configuration options.

```html Handsontable - JavaScript Data Grid Example
```

## 🚀 Resources - [Website](https://handsontable.com) - [Demo](https://handsontable.com/demo) - [Documentation](https://handsontable.com/docs) - [npm](https://www.npmjs.com/package/handsontable) - [CDN](https://www.jsdelivr.com/package/npm/handsontable) - [Forum](https://forum.handsontable.com/) - [Blog](https://handsontable.com/blog) - [Contact support team](https://handsontable.com/contact?category=technical_support) - [Get a quote](https://handsontable.com/get-a-quote)
## 🤔 Is Handsontable a Data Grid or a Spreadsheet? Handsontable is a data grid component written in JavaScript, not a spreadsheet. However, it brings in many features typically found in spreadsheet software. We designed it this way because spreadsheet-like patterns are often the most user-friendly when it comes to data entry and management. ### Spreadsheet-like features in Handsontable: - Keyboard shortcuts compliant with either Google Sheets or Excel - 400 spreadsheet formulas via native integration with [HyperFormula](https://github.com/handsontable/hyperformula) - Keyboard navigation across headers that can be disabled, making only cells navigable - TAB navigation across cells that can be disabled - Built-in undo-redo functionality - Powerful clipboard capabilities for copy-paste operations - Ability to scroll the grid within the container (`div`) or window - Data binding in the form of an array of objects or arrays of arrays - Built-in cell editors like a date picker or dropdown list At first glance, it might seem that a data table, spreadsheet, and data grid are just different names for the same thing - an interactive table displaying data. In reality, these tools serve different purposes and offer distinct functionalities, designed to meet specific needs. Handsontable sits comfortably in the data grid category while incorporating many of the best aspects of spreadsheet software.
## 🛟 Support **We're here to help!** If you're using Handsontable with a free, non-commercial license, you can: - Join the conversation on [GitHub Discussions](https://github.com/handsontable/handsontable/discussions) to share ideas, suggest features, or discuss changes. - Report any bugs you find on our [GitHub Issue Board](https://github.com/handsontable/handsontable/issues). - Connect with other developers and find answers on our [Developer Forum](https://forum.handsontable.com). If you have a commercial license, feel free to contact us directly at [support@handsontable.com](mailto:support@handsontable.com) or use our [contact form](https://handsontable.com/contact?category=technical_support).
## 📖 Licenses Handsontable is available under two licensing options, allowing you to choose the one that best fits your needs. Each license comes with its own terms and conditions, as outlined below: ### ① Free license for non-commercial use, and evaluation purposes This license is available for non-commercial purposes such as teaching, academic research, or evaluation. It allows you to use Handsontable free of charge under the terms specified in the non-commercial license agreement. [Learn more here](https://github.com/handsontable/handsontable/blob/master/handsontable-non-commercial-license.pdf). ### ② Commercial license For commercial use, a paid license is required. This license includes support and maintenance to ensure you get the most out of Handsontable. The commercial license can be purchased directly from Handsoncode or through an [authorized reseller](https://handsontable.com/resellers). See the [pricing page](https://handsontable.com/pricing) for details.
## 🔑 License Key For projects covered by the free non-commercial license, simply use the phrase `'non-commercial-and-evaluation'` as your license key. If you're using Handsontable in a project that supports commercial activities, you'll need to purchase a license key at [handsontable.com/pricing](https://handsontable.com/pricing). You can find more details in [our documentation](https://handsontable.com/docs/license-key/).
## 🙌 Contributing Contributions are welcome, but before you make them, please read the [Contributing Guide](https://github.com/handsontable/handsontable/blob/develop/CONTRIBUTING.md) and accept the [Contributor License Agreement](https://goo.gl/forms/yuutGuN0RjsikVpM2).

Created and maintained by the [Handsontable Team](https://handsontable.com/team) 👋 --- © 2012 - 2025 Handsoncode