Row API Reference

createPaginatedRowModel

Function: createPaginatedRowModel()

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

Defined in: features/row-pagination/createPaginatedRowModel.ts:15

Creates a memoized paginated 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 = any

Returns

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

Parameters

table

Table<TFeatures, TData>

Returns

ts
(): RowModel<TFeatures, TData>;

Returns

RowModel<TFeatures, TData>