Defined in: features/global-filtering/globalFilteringFeature.types.ts:35
TFeatures extends TableFeatures
TData extends RowData
optional enableGlobalFilter: boolean;Defined in: features/global-filtering/globalFilteringFeature.types.ts:42
Enables global filtering across columns that allow it.
optional getColumnCanGlobalFilter: <TFeatures, TData, TValue>(column) => boolean;Defined in: features/global-filtering/globalFilteringFeature.types.ts:47
If provided, this function will be called with the column and should return true or false to indicate whether this column should be used for global filtering. This is useful if the column can contain data that is not string or number (i.e. undefined).
TFeatures extends TableFeatures
TData extends RowData
TValue extends unknown = unknown
Column<TFeatures, TData, TValue>
boolean
optional globalFilterFn: FilterFnOption<TFeatures, TData>;Defined in: features/global-filtering/globalFilteringFeature.types.ts:60
The filter function to use for global filtering.
optional onGlobalFilterChange: OnChangeFn<any>;Defined in: features/global-filtering/globalFilteringFeature.types.ts:66
Called with an updater when global filter state changes. Pair this with state.globalFilter when using external state; external atoms can own the slice without this callback.