Skip to content

Interactive Tables and Data Grids for JavaScript

License

Notifications You must be signed in to change notification settings

jjech/tabulator

This branch is 7 commits ahead of, 1933 commits behind olifolkerd/tabulator:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4b8f9d0 · Jan 13, 2020
Nov 21, 2019
Dec 8, 2019
Jan 7, 2020
Oct 1, 2018
Sep 23, 2018
Nov 21, 2019
Jan 6, 2019
Dec 8, 2019
Dec 8, 2019
Jan 5, 2020
Dec 8, 2019
Dec 25, 2019
Jul 20, 2019

Repository files navigation

Tabulator Table

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

<link href="dist/css/tabulator.min.css" rel="stylesheet">
<script type="text/javascript" src="dist/js/tabulator.min.js"></script>

Create an element to hold the table

<div id="example-table"></div>

Turn the element into a tabulator with some simple javascript

var table = new Tabulator("#example-table", {});

Bower Installation

To get Tabulator via the Bower package manager, open a terminal in your project directory and run the following commmand:

bower install tabulator --save

NPM Installation

To get Tabulator via the NPM package manager, open a terminal in your project directory and run the following commmand:

npm install tabulator-tables --save

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 localy hosted versions:

<link href="https://unpkg.com/tabulator-tables@4.5.2/dist/css/tabulator.min.css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/tabulator-tables@4.5.2/dist/js/tabulator.min.js"></script>

About

Interactive Tables and Data Grids for JavaScript

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 72.5%
  • CSS 27.5%