Docs
CodeRabbit
Cloudflare
Railway
Clerk
WorkOS
SerpAPI
OpenRouter
Netlify
AG Grid
Sentry
Electric
Prisma
Unkey
CodeRabbit
Cloudflare
Railway
Clerk
WorkOS
SerpAPI
OpenRouter
Netlify
AG Grid
Sentry
Electric
Prisma
Unkey
Table API Reference
Column API Reference
Row API Reference
Cell API Reference
Header API Reference
Features API Reference
Static Functions API Reference
Legacy API Reference
Row API Reference

createCoreRowModel

Function: createCoreRowModel()

ts
function createCoreRowModel<TFeatures, TData>(): (table) => () => RowModel<TFeatures, TData>;
function createCoreRowModel<TFeatures, TData>(): (table) => () => RowModel<TFeatures, TData>;

Defined in: core/row-models/createCoreRowModel.ts:15

Creates a memoized core row model factory.

The factory reads the relevant table state atoms and options, then returns a row model function used by the table row-model pipeline.

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

Returns

ts
(table): () => RowModel<TFeatures, TData>;
(table): () => RowModel<TFeatures, TData>;

Parameters

table

Table<TFeatures, TData>

Returns

ts
(): RowModel<TFeatures, TData>;
(): RowModel<TFeatures, TData>;

Returns

RowModel<TFeatures, TData>