Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@revolist/revogrid
Advanced tools
Support Millions of cells and thousands of 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.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;
Grid works as web component. All you have to do just to place component on the page and access it properties as an element. We provide many ways to integrate our grid in your project:
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>
<v-grid :source="rows" :columns="columns"/>
</template>
<script>
import VGrid from '@revolist/vue-datagrid';
export default {
name: 'App',
data() => ({
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
FAQs
Virtual reactive data grid spreadsheet component - RevoGrid.
We found that @revolist/revogrid demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.