Powerful data grid component built with StencilJS.
Support Millions of cells and thousands columns easy and efficiently for fast data rendering. Easy to use.
Demo and API • Key Features • How To Use • Installation • Docs • License
RevoGrid material theme.- Millions of cells virtual viewport scroll with a powerful core is in-build by default;
- Keayboard support;
- Super light initial starter
. Can be imported with polifill or as module for modern browsers;
- Intelligent Virtual DOM and smart row recombination in order to achieve less redraws;
- Column and Row custom sizes;
- Column resizing;
- Column auto-size support (content related column size feature);
- Pinned columns (columns are always on the left or on the right of the screen);
- Pinned row (rows are always at the top or at the bottom);
- Column grouping;
- Cell editing;
- Custom header renderer;
- Custom cell renderer templates (build your own cell view);
- Custom cell editor (apply your own editors and cell types);
- Custom cell properties;
- Column types (select, string, number, date, custom);
- Drag and drop rows;
- Column sorting;
- Range selection;
- Range edit;
- Theme packages: Excel like, material, compact, dark or light;
- Copy/Paste: Copy/paste from Excel, Google Sheets or any other sheet format;
- Easy extenation and support with modern VNode features and tsx support;
- Hundred small customizations and improvements RevoGrid.
The RevoGrid component helps represent a huge amount of data in a form of data table "excel like" or as list. On top of it it provides inbuilt range edit or per cell edit, keyboard support and custom edit and render features. Works in any major framework or with no framework at all.
Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ |
The library published as a scoped NPM package in the NPMJS Revolist account. Check for more info on our demo side.
With NPM:
npm i @revolist/revogrid --save;
With Yarn:
yarn add @revolist/revogrid;
- JavaScript;
- VueJs;
- React;
- Angular.
- Ember.
Grid works as web component. All you have to do just to place component on the page and access it properties as an element.
<!DOCTYPE html>
<html>
<head>
// Import from node modules
<script src="node_modules/@revolist/revogrid/dist/revo-grid/revo-grid.js"></script>
// With unpkg
<script src="https://cdn.jsdelivr.net/npm/@revolist/revogrid@latest/dist/revo-grid/revo-grid.js"></script>
</head>
<body>
// after you imported file to your project simply define component
<revo-grid class="grid-component"/>
</body>
</html>
Alternatively, if you wanted to take advantage of ES Modules, you could include the components using an import statement. Note that in this scenario applyPolyfills is needed if you are targeting Edge or IE11.
<script type="module">
import { defineCustomElements, applyPolyfills } from 'https://unpkg.com/@revolist/revogrid@latest/loader/index.es2017.js';
defineCustomElements();
</script>
import { defineCustomElements } from '@revolist/revogrid/loader';
defineCustomElements(); // let browser know new component registered
const grid = document.querySelector('revo-grid');
const columns = [
{
prop: 'name',
name: 'First column'
},
{
prop: 'details',
name: 'Second column',
cellTemplate: (createElement, props) => {
return createElement('div', {
style: {
backgroundColor: 'red'
},
class: {
'inner-cell': true
}
}, props.model[props.prop] || '');
}
}
];
const items = [{
name: 'New item',
details: 'Item description'
}];
grid.columns = columns;
grid.source = items;
<template>
<div id="app">
<v-grid
v-if="grid === 1"
key="1"
theme="compact"
:source="rows"
:columns="columns"
></v-grid>
</div>
</template>
<script>
import VGrid from "@revolist/vue-datagrid";
export default {
name: "App",
data() {
return {
columns: [
{
prop: "name",
name: "First",
},
{
prop: "details",
name: "Second",
},
],
rows: [
{
name: "1",
details: "Item 1",
},
]
};
},
components: {
VGrid,
},
};
</script>
If you have any idea, feel free to open an issue to discuss a new feature, or fork RevoGrid and submit your changes back to me.
MIT