Grid.js Advanced Table Plugin

Grid.js is a Free and open-source JavaScript table plugin. It works with most JavaScript frameworks, including React, Angular, Vue and VanillaJs.

Install Grid.js

You can install Grid.js in a few simple steps. Grid.js consists of two main files, the JavaScript part and the CSS part which renders the elements nicely.

1 Include the JavaScript and CSS

Grid.js is available on NPM and most CDNs

JavaScript
CSS

2 Call the render() method

The render() method binds and renders a Grid.js instance

new Grid({ 
columns: ['Name', 'Email'],
data: [
['John', '[email protected]'],
['Mike', '[email protected]']
]
}).render(document.getElementById('table'));
Easy to Use

The simplicity of Grid.js API will help you to develop advanced JavaScript tables in a few simple and straightforward steps.

Extensible

Grid.js takes advantage of an advanced pipeline to process data. The pipeline is very easy to extend and improve.

Free and open-source

Grid.js is Free and open-source, published under MIT license.