Tabulator alternatives and similar libraries
Based on the "Table/Grid" category.
Alternatively, view tabulator alternatives based on common mentions on social networks and blogs.
-
Isotope
A filterable, sortable, grid layout library. Can implement Masonry, Packery, and other layouts. -
DataTables
(jQuery plug-in) It is a highly flexible tool, based upon the foundations of progressive enhancement, and will add advanced interaction controls to any HTML table. -
Freewall
Freewall is a cross-browser and responsive jQuery plugin to help you create many types of grid layouts for desktop, mobile, and tablet... -
floatThead
(jQuery plug-in) lock any table's header while scrolling within the body. Works on any table and requires no custom html or css. -
Bootstrap Table
An Extension to the popular Bootstrap framework for creating tables that fit the style of your site with no need for additional markup.
Get performance insights in less than 4 minutes.
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest. Visit our partner's website for more details.
Do you think we are missing an alternative of Tabulator or a related project?
README
An easy to use interactive table generation JavaScript library
Full documentation & demos can be found at: http://tabulator.info
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:
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/dist/css/tabulator.min.css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/tabulator-tables/dist/js/tabulator.min.js"></script>