datatable/README.md
Faris Ansari c95fa505dd
Update npm version badge (#31)
* Update npm version badge

* Update license badge
2018-05-30 15:02:04 +05:30

1.0 KiB

Frappe DataTable

A modern datatable library for the web

travis build npm version MIT License

Features

  • Resizable columns
  • Sorting
  • Custom formatted data
  • In place editing
  • Efficient rendering of large data

Usage

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