6.1.3 • Published 5 years ago

fixed-react-data-grid-custom v6.1.3

Weekly downloads
21
License
MIT
Repository
github
Last release
5 years ago

react-data-grid

The core of react-data-grid

React Data Grid with no merged community fixes

Current fixes:

https://github.com/adazzle/react-data-grid/pull/1476 - mareolan https://github.com/adazzle/react-data-grid/pull/1489 - szogun1987

Oficial github: https://github.com/adazzle/react-data-grid

Install

npm install --save fixed-react-data-grid

Usage

import ReactDataGrid from 'fixed-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} />);
}

Exports

Asside from the grid this package exports:

namesource
RowComparerRowComparer
RowsContainerRowsContainer
RowRow
CellCell
HeaderCellHeaderCell
editorsEditors
formattersFormatters
shapesshapes
_constants_constants
_helpers_helpers
6.1.2

5 years ago

6.1.3

5 years ago

6.1.1

5 years ago

6.1.0

5 years ago

6.0.15

5 years ago

6.0.14

5 years ago

6.0.13

5 years ago

6.0.12

5 years ago

6.0.7

5 years ago

6.0.6

5 years ago

6.0.9

5 years ago

6.0.8

5 years ago

6.0.11

5 years ago

6.0.10

5 years ago

6.0.5

5 years ago

6.0.4

5 years ago

6.0.3

5 years ago