datatable/README.md
Faris Ansari 3c92ddab41 Add Meta
- Add Readme
- Fix outputfile name
2017-09-24 23:41:03 +05:30

613 B

ReGrid

A modern datatable library for the web

Features

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

Usage

var grid = new ReGrid({
  wrapper: document.querySelector('#data-table'),
  data: {
    columns: [
      'Sr No.',
      'First Name',
      'Last Name',
    ],
    rows: [
      [
        '1',
        'Don',
        'Joe'
      ],
      [
        '2',
        'Mary',
        'Jane'
      ]
    ]
  }
});

Contribute

  • npm run dev - run this command and start hacking
  • npm run test - run tests

License

MIT