Millions of cells and thousands columns easy and efficiently. Any major framework or with no framework at all.
The RevoGrid component helps represent a huge amount of data in a form of data table “excel like” or as list.
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;
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
<template>
<revo-grid
theme="material"
:canFocus.prop="canFocus"
:source.prop="source"
:columns.prop="columns"/>
</template>
<script>
import { defineCustomElements } from '@revolist/revogrid/loader';
defineCustomElements();
Vue.config.ignoredElements = [/revo-\w*/]; // Ignore web-component and avoid parsing it as VueJs
export default {
data () {
return {
canFocus: true,
source: [],
columns: []
}
}
}
</script>
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;
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.
Author: revolist
Demo: https://revolist.github.io/revogrid/
Source Code: https://github.com/revolist/revogrid
#vue #vuejs #javascript