This is a fork of the tabulator-tables repo.
For more information, please visit https://github.com/olifolkerd/tabulator.
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', {})To get Tabulator via the NPM package manager, open a terminal in your project directory and run the following command:
npm install @bornova/tabulator-tablesTo 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>