@bornova/tabulator-tables
v1.2.0
Published
Feature-rich interactive data tables with zero dependencies
Maintainers
Readme
@bornova/tabulator-tables
This is a fork of the tabulator-tables repo.
For more information, please visit https://github.com/olifolkerd/tabulator.
Setup
Include the library and the css:
<link href="dist/themes/default/tabulator.min.css" rel="stylesheet" />
<script type="text/javascript" src="dist/browser/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:
let table = new Tabulator('#example-table', {})NPM Installation
To get Tabulator via the NPM package manager, open a terminal in your project directory and run the following command:
npm install @bornova/tabulator-tablesCDN - 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:
<link href="https://unpkg.com/@bornova/tabulator-tables/dist/themes/default/tabulator.min.css" rel="stylesheet" />
<script type="text/javascript" src="https://unpkg.com/@bornova/tabulator-tables/dist/browser/tabulator.min.js"></script>