InFilterValueResult

Result when providing custom values for the IN Column Filter

TypeScript
export interface

Properties

PropertyTypeDescription
hasMorebooleanWhen 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.
skipDefaultSearchbooleanIf true, AdapTable will not filter the list using the current search value
valuesInFilterValue[]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[];
Property Value

InFilterValue[]