Back to Table

Table_RowModels_Core

docs/reference/interfaces/Table_RowModels_Core.md

8.21.31.3 KB
Original Source

Interface: Table_RowModels_Core<TFeatures, TData>

Defined in: core/row-models/coreRowModelsFeature.types.ts:44

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

Properties

getCoreRowModel()

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

Defined in: core/row-models/coreRowModelsFeature.types.ts:51

Returns the core row model before any processing has been applied.

Returns

RowModel<TFeatures, TData>


getRowModel()

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

Defined in: core/row-models/coreRowModelsFeature.types.ts:55

Returns the final model after all processing from other used features has been applied. This is the row model that is most commonly used for rendering.

Returns

RowModel<TFeatures, TData>