Grid.js is a Free and open-source JavaScript table plugin. It works with most JavaScript frameworks, including React, Angular, Vue and VanillaJs.
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.
render()
methodThe 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'));
The simplicity of Grid.js API will help you to develop advanced JavaScript tables in a few simple and straightforward steps.
Grid.js takes advantage of an advanced pipeline to process data. The pipeline is very easy to extend and improve.
Grid.js is Free and open-source, published under MIT license.