![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@revolist/revogrid
Advanced tools
Virtual grid implementation based on webcomponent using StencilJs. Handles millions of rows and columns fast and efficiently. Works in any major framework (VueJs, React, Ember, Angular) or with no framework at all.
The RevoGrid component helps represent a huge amount of data in a form of data table. Check for more details RevoGrid page.
![]() | ![]() | ![]() | ![]() | ![]() |
---|---|---|---|---|
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.
npm install --save @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>
// node_modules path
<script src="node_modules/@revolist/revogrid/dist/revo-grid.js"></script>
// or with unpkg
<script src="https://unpkg.com/browse/@revolist/revogrid@latest/dist/revo-grid.js"></script>
// 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 { applyPolyfills, defineCustomElements } from 'https://unpkg.com/browse/@revolist/revogrid@latest/loader';
applyPolyfills().then(() => {
defineCustomElements();
});
</script>
</head>
<body>
<revo-grid class="grid-component"/>
</body>
</html>
const grid = document.querySelector('revo-grid');
const columns = [
{
prop: 'name',
name: 'First column'
},
{
prop: 'details',
name: 'Second column',
cellTemplate: (h, props) => {
return h('div', {
style: {
backgroundColor: 'red'
},
class: 'inner-cell'
}, 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.
FAQs
Virtual reactive data grid spreadsheet component - RevoGrid.
The npm package @revolist/revogrid receives a total of 6,761 weekly downloads. As such, @revolist/revogrid popularity was classified as popular.
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.