Defined in: useLegacyTable.ts:193
Legacy v8-style row model options
TData extends RowData
optional aggregationFns: AggregationFns;optional aggregationFns: AggregationFns;Defined in: useLegacyTable.ts:253
Additional aggregation functions to apply to the table.
Use _rowModels.groupedRowModel with createGroupedRowModel(aggregationFns) instead.
optional filterFns: FilterFns;optional filterFns: FilterFns;Defined in: useLegacyTable.ts:243
Additional filter functions to apply to the table.
Use _rowModels.filteredRowModel with createFilteredRowModel(filterFns) instead.
optional getCoreRowModel: RowModelFactory<TData>;optional getCoreRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:198
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>;optional getExpandedRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:218
Returns the expanded row model for the table.
Use _rowModels.expandedRowModel with createExpandedRowModel() instead.
optional getFacetedMinMaxValues: FacetedMinMaxValuesFactory<TData>;optional getFacetedMinMaxValues: FacetedMinMaxValuesFactory<TData>;Defined in: useLegacyTable.ts:233
Returns the faceted min/max values for a column.
Use _rowModels.facetedMinMaxValues with createFacetedMinMaxValues() instead.
optional getFacetedRowModel: FacetedRowModelFactory<TData>;optional getFacetedRowModel: FacetedRowModelFactory<TData>;Defined in: useLegacyTable.ts:228
Returns the faceted row model for a column.
Use _rowModels.facetedRowModel with createFacetedRowModel() instead.
optional getFacetedUniqueValues: FacetedUniqueValuesFactory<TData>;optional getFacetedUniqueValues: FacetedUniqueValuesFactory<TData>;Defined in: useLegacyTable.ts:238
Returns the faceted unique values for a column.
Use _rowModels.facetedUniqueValues with createFacetedUniqueValues() instead.
optional getFilteredRowModel: RowModelFactory<TData>;optional getFilteredRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:203
Returns the filtered row model for the table.
Use _rowModels.filteredRowModel with createFilteredRowModel(filterFns) instead.
optional getGroupedRowModel: RowModelFactory<TData>;optional getGroupedRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:223
Returns the grouped row model for the table.
Use _rowModels.groupedRowModel with createGroupedRowModel(aggregationFns) instead.
optional getPaginationRowModel: RowModelFactory<TData>;optional getPaginationRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:213
Returns the paginated row model for the table.
Use _rowModels.paginatedRowModel with createPaginatedRowModel() instead.
optional getSortedRowModel: RowModelFactory<TData>;optional getSortedRowModel: RowModelFactory<TData>;Defined in: useLegacyTable.ts:208
Returns the sorted row model for the table.
Use _rowModels.sortedRowModel with createSortedRowModel(sortFns) instead.
optional sortFns: SortFns;optional sortFns: SortFns;Defined in: useLegacyTable.ts:248
Additional sort functions to apply to the table.
Use _rowModels.sortedRowModel with createSortedRowModel(sortFns) instead.