Tabulator

Interactive Tables and Data Grids for JavaScript

README

An easy to use interactive table generation JavaScript library

Full documentation & demos can be found at: http://tabulator.info


Tabulator Table

Features
================================
Tabulator allows you to create interactive tables in seconds from any HTML Table, Javascript Array or JSON formatted data.

Simply include the library and the css in your project and you're away!

Tabulator is packed with useful features including:

Tabulator Features

Frontend Framework Support
================================
Tabulator is built to work with all the major front end JavaScript frameworks including React, Angular and Vue.

Setup
================================
Setting up tabulator could not be simpler.

Include the library and the css
  1. ``` html
  2. <link href="dist/css/tabulator.min.css" rel="stylesheet">
  3. <script type="text/javascript" src="dist/js/tabulator.min.js"></script>
  4. ```

Create an element to hold the table
  1. ``` html
  2. <div id="example-table"></div>
  3. ```

Turn the element into a tabulator with some simple javascript
  1. ``` js
  2. var table = new Tabulator("#example-table", {});
  3. ```

Bower Installation

To get Tabulator via the Bower package manager, open a terminal in your project directory and run the following command:
  1. ```
  2. bower install tabulator --save
  3. ```

NPM Installation

To get Tabulator via the NPM package manager, open a terminal in your project directory and run the following command:
  1. ```
  2. npm install tabulator-tables --save
  3. ```

CDN - UNPKG

To access Tabulator directly from the UNPKG CDN servers, include the following two lines at the start of your project, instead of the locally hosted versions:
  1. ``` html
  2. <link href="https://unpkg.com/tabulator-tables/dist/css/tabulator.min.css" rel="stylesheet">
  3. <script type="text/javascript" src="https://unpkg.com/tabulator-tables/dist/js/tabulator.min.js"></script>
  4. ```