COREOR / REACT DATA GRID
Every data shape.
One powerful grid.
Build fast, typed data experiences. Explore every cell type and feature, then generate your own table in the live playground.
19COLUMN TYPES
08FEATURE LABS
2.4kLIVE RECORDS
20 columns in one tableClient + server examplesEditable typed cellsCSV export scopes
01 / EVERYTHING TOGETHER
LIVE DATAThe complete workspace
All column types and grid actions in a single, fully interactive table.
TRY THIS① Filter status + price② Double-click a cell③ Select across pages④ Export CSV
Preparing interactive table…
02 / EXPLORE IN DEPTH
Go deeper, one capability at a time
Focused examples make each behavior easy to inspect.
Typed filters
Ranges, multi-select values, dates and search matched to each column type.
Open lab Cell editorsEdit in place, validate values and undo or redo changes.
Open lab Selection & exportSelect rows across pages and export a page, selection or filtered results.
Open lab PaginationMove between pages and change page size without losing your work.
Open lab03 / BUILD WITH REACT
Read the API From preview to production
Copy a starter component, then fine tune it in the Table Maker.
QUICK START
import '@battincik/coreor-datatable/styles.css'
import { EnterpriseGrid, type GridColumn } from '@battincik/coreor-datatable'
const columns: GridColumn<Row>[] = [
{ key: 'name', title: 'Name', kind: 'text', editable: true },
{ key: 'status', title: 'Status', kind: 'status' },
]
<EnterpriseGrid data={rows} columns={columns} onDataChange={setRows} />