tabulator

Interactive Tables and Data Grids for JavaScript

Github stars Tracking Chart

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.3/dist/css/tabulator.min.css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/tabulator-tables@4.5.3/dist/js/tabulator.min.js"></script>

Overview

Name With Ownerolifolkerd/tabulator
Primary LanguageJavaScript
Program languageJavaScript (Language Count: 2)
Platform
License:MIT License
Release Count157
Last Release Name6.2.1 (Posted on )
First Release Name1.0.0 (Posted on )
Created At2015-10-24 13:28:31
Pushed At2024-05-08 10:37:50
Last Commit At2024-04-28 11:18:49
Stargazers Count6.2k
Watchers Count137
Fork Count775
Commits Count4k
Has Issues Enabled
Issues Count4143
Issue Open Count125
Pull Requests Count189
Pull Requests Open Count16
Pull Requests Close Count142
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private
To the top