Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@lucjansuski/react-data-grid
Advanced tools
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
The core of react-data-grid
npm install --save react-data-grid
import ReactDataGrid from 'react-data-grid';
const columns = [{ key: 'id', name: 'ID' }, { key: 'title', name: 'Title' }];
const rows = [{ id: 1, title: 'Title 1' }, ...];
const rowGetter = rowNumber => rows[rowNumber];
const Grid = () => {
return <ReactDataGrid
columns={columns}
rowGetter={rowGetter}
rowsCount={rows.length}
minHeight={500} />);
}
Asside from the grid this package exports:
name | source |
---|---|
RowComparer | RowComparer |
RowsContainer | RowsContainer |
Row | Row |
Cell | Cell |
HeaderCell | HeaderCell |
editors | Editors |
formatters | Formatters |
utils | utils |
shapes | shapes |
_constants | _constants |
_helpers | _helpers |
FAQs
Excel-like grid component built with React, with editors, keyboard navigation, copy & paste, and the like
We found that @lucjansuski/react-data-grid demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.