Package Exports
- @handsontable/angular
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@handsontable/angular) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
angular-handsontable 
Official Angular module for Handsontable.
Table of contents
Installation
To install a wrapper for Handsontable Community Edition (CE):
npm install @handsontable/angular handsontableTo install a wrapper for Handsontable PRO:
npm install @handsontable-pro/angular handsontable-proBasic usage
styles.css
@import '~handsontable/dist/handsontable.full.css';app/app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { HotTableModule } from '@handsontable/angular';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
HotTableModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }app/app.component.html
<hot-table></hot-table>Examples
License
@handsontable/angular is released under the MIT license. @handsontable-pro/angular is released under the MIT license. Copyrights belong to Handsoncode sp. z o.o.
Contact
Feel free to give us feedback on this wrapper using this contact form.
Other Wrappers
Handsontable is available for other popular frameworks:
- hot-table (Polymer - WebComponents)
- ngHandsontable (Angular 1)
- vue-handsontable-official (Vue.js)
- react-handsotable (React)