InFilterValueResult
Result when providing custom values for the IN Column Filter
TypeScript
export interfaceProperties
| Property | Type | Description |
|---|---|---|
| hasMore | boolean | When true, scrolling near the end of the list re-invokes customInFilterValues with a larger offset. New values are appended (same search). Search changes reset the list and set offset back to 0. |
| skipDefaultSearch | boolean | If true, AdapTable will not filter the list using the current search value |
| values | InFilterValue[] | List of Items to display in the IN Column Filter |
Property Details
hasMore
When true, scrolling near the end of the list re-invokes customInFilterValues with a larger offset. New values are appended (same search). Search changes reset the list and set offset back to 0.
TypeScript
hasMore?: boolean;Property Value
boolean
skipDefaultSearch
If true, AdapTable will not filter the list using the current search value
TypeScript
skipDefaultSearch?: boolean;Property Value
boolean
values
List of Items to display in the IN Column Filter
TypeScript
values: InFilterValue[];