datatable/README.md
Faris Ansari 67ea7746a2
Switch to Rollup (#16)
* Added Rollup config

* Add cjs build

* Remove webpack configs
2018-02-20 18:28:32 +05:30

34 lines
525 B
Markdown

# Frappé DataTable
A modern datatable library for the web
## Features
* Resizable columns
* Sorting
* Custom formatted data
* In place editing
* Efficient rendering of large data
## Usage
```js
var grid = new DataTable(document.querySelector('#data-table'), {
data: {
columns: [ 'Sr No.', 'First Name', 'Last Name' ],
rows: [
[ '1', 'Don', 'Joe' ],
[ '2', 'Mary', 'Jane' ]
]
}
});
```
## Contribute
* `yarn start` - Start rollup watch
* `yarn build` - Build js/css bundles
## License
MIT