Back to Table

CreateRowModel_Paginated

docs/reference/interfaces/CreateRowModel_Paginated.md

8.21.31.2 KB
Original Source

Interface: CreateRowModel_Paginated<TFeatures, TData>

Defined in: features/row-pagination/rowPaginationFeature.types.ts:123

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

Properties

paginatedRowModel()?

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

Defined in: features/row-pagination/rowPaginationFeature.types.ts:131

Returns the row model after pagination has taken place, but no further. Pagination columns are automatically reordered by default to the start of the columns list. If you would rather remove them or leave them as-is, set the appropriate mode here.

Parameters

table

Table<TFeatures, TData>

Returns

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

RowModel<TFeatures, TData>