Package Exports
- gridjs
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 (gridjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Grid.js
Fast and extensible table library.
A table library that works everywhere
- Simple and lightweight implementation
- No vendor lock-in. Grid.js can be used with most popular JavaScript frameworks (React, Angular, Preact or VanillaJS)
- Written in TypeScript
- Supports all modern browsers and IE11+
Example
new Grid({
data: [
['Mike', 33, 'mike@murphy.com'],
['John', 82, 'john@conway.com'],
['Sara', 26, 'sara@keegan.com']
],
header: ['Name', 'Age', 'Email']
}).createElement();
Piece of 🍰