Defined in: react-table/src/useLegacyTable.ts:208
Legacy v8-style row model options
TData extends RowData
optional aggregationFns: AggregationFns;Defined in: react-table/src/useLegacyTable.ts:268
Additional aggregation functions to apply to the table.
Use rowAggregationFeature with the aggregationFns slot instead. Add columnGroupingFeature and groupedRowModel only when grouping rows.
optional filterFns: FilterFns;Defined in: react-table/src/useLegacyTable.ts:258
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: react-table/src/useLegacyTable.ts:213
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: react-table/src/useLegacyTable.ts:233
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: react-table/src/useLegacyTable.ts:248
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: react-table/src/useLegacyTable.ts:243
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: react-table/src/useLegacyTable.ts:253
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: react-table/src/useLegacyTable.ts:218
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: react-table/src/useLegacyTable.ts:238
Returns the grouped row model for the table.
Use columnGroupingFeature with the groupedRowModel slot and createGroupedRowModel() instead. Add rowAggregationFeature separately when grouped rows aggregate values.
optional getPaginationRowModel: RowModelFactory<TData>;Defined in: react-table/src/useLegacyTable.ts:228
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: react-table/src/useLegacyTable.ts:223
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: react-table/src/useLegacyTable.ts:263
Additional sort functions to apply to the table.
Use the sortedRowModel/sortFns slots on the features option with createSortedRowModel() instead.