Defined in: useLegacyTable.ts:194
Legacy v8-style row model options
TData extends RowData
optional aggregationFns: AggregationFns;Defined in: useLegacyTable.ts:254
Additional aggregation functions to apply to the table.
Use the groupedRowModel/aggregationFns slots on the features option with createGroupedRowModel() instead.
optional filterFns: FilterFns;Defined in: useLegacyTable.ts:244
Additional filter functions to apply to the table.
Use the filteredRowModel/filterFns slots on the features option with createFilteredRowModel() instead.
optional getCoreRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:199
Returns the core row model for the table.
This option is no longer needed in v9. The core row model is always created automatically.
optional getExpandedRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:219
Returns the expanded row model for the table.
Use the expandedRowModel slot on the features option with createExpandedRowModel() instead.
optional getFacetedMinMaxValues: FacetedMinMaxValuesFactory<TData>;Defined in: useLegacyTable.ts:234
Returns the faceted min/max values for a column.
Use the facetedMinMaxValues slot on the features option with createFacetedMinMaxValues() instead.
optional getFacetedRowModel: FacetedRowModelFactory<TData>;Defined in: useLegacyTable.ts:229
Returns the faceted row model for a column.
Use the facetedRowModel slot on the features option with createFacetedRowModel() instead.
optional getFacetedUniqueValues: FacetedUniqueValuesFactory<TData>;Defined in: useLegacyTable.ts:239
Returns the faceted unique values for a column.
Use the facetedUniqueValues slot on the features option with createFacetedUniqueValues() instead.
optional getFilteredRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:204
Returns the filtered row model for the table.
Use the filteredRowModel/filterFns slots on the features option with createFilteredRowModel() instead.
optional getGroupedRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:224
Returns the grouped row model for the table.
Use the groupedRowModel/aggregationFns slots on the features option with createGroupedRowModel() instead.
optional getPaginationRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:214
Returns the paginated row model for the table.
Use the paginatedRowModel slot on the features option with createPaginatedRowModel() instead.
optional getSortedRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:209
Returns the sorted row model for the table.
Use the sortedRowModel/sortFns slots on the features option with createSortedRowModel() instead.
optional sortFns: SortFns;Defined in: useLegacyTable.ts:249
Additional sort functions to apply to the table.
Use the sortedRowModel/sortFns slots on the features option with createSortedRowModel() instead.