
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
react-absolute-grid
Advanced tools
An absolutely positioned fully configurable React grid with drag/drop, filtering, selection, and sorting
An absolute layout grid with animations, filtering, zooming, and drag and drop support. Use your own component as the grid item. See the Demo.
import React from 'react';
import AbsoluteGrid from './lib/AbsoluteGrid.jsx';
/*
The data structure is pretty strict, we require a unique identifier (in this case key) and a sort
*/
var sampleItems = [
{key: 1, name: 'Test', sort: 0, filtered: 0},
{key: 2, name: 'Test 1', sort: 1, filtered: 0},
];
React.render(<AbsoluteGrid items={sampleItems} />, document.getElementById('Container'));
false for no animation.Display objects will receive item, style, and index as properties. You must apply the style to the root element in your render. Here's the simplest possible example with drag and drop support:
'use strict';
import React from 'react';
import BaseDisplayObject from '../lib/BaseDisplayObject.jsx';
export default class SampleDisplay extends BaseDisplayObject{
constructor() {
super();
//Only required if you want drag/drop support
this.onDrag = super.onDrag.bind(this);
this.onMouseOver = super.onMouseOver.bind(this);
}
render() {
//IMPORTANT: Without the style, nothing happens :(
var itemStyle = super.getStyle.call(this);
return <div onMouseDown={this.onDrag} onMouseOver={this.onMouseOver} style={itemStyle}></div>;
}
}
Once you've created a display object, use it like this:
var dispalyObject = (<SampleDisplay />);
var grid = (<AbsoluteGrid ... displayObject={displayObject}/>);
This component should work in all browsers that support CSS3 3D Transforms. If you need IE9 support you can modify it to use transform rather than transform3d. Pull requests welcome!
Drag and Drop only works on IE11+ due to lack of pointer events, although there is a workaround coming soon.
FAQs
An absolutely positioned responsive touch-enabled fully configurable React grid with drag/drop, filtering, and sorting
The npm package react-absolute-grid receives a total of 112 weekly downloads. As such, react-absolute-grid popularity was classified as not popular.
We found that react-absolute-grid demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.