InFilterValueInfo

Information about items in the IN Column Filter

TypeScript
export interface InFilterValueInfo extends
Extends

InFilterValue

Properties

PropertyDescription
children
countHow many times Item appears in the column
isSelectedWhether Item is currently selected
leafChildrenCountFor the grouping scenario, how many leafs are there under this item
visibleWhether Item is currently visible in Grid (i.e. in filtered rows)
visibleCountHow many times Item appears in the column in filtered rows

Property Details

children

TypeScript
children?: InFilterValueInfo[];
Property Value

InFilterValueInfo[]

count

How many times Item appears in the column

TypeScript
count?: number;
Property Value

number

isSelected

Whether Item is currently selected

TypeScript
isSelected?: boolean;
Property Value

boolean

leafChildrenCount

For the grouping scenario, how many leafs are there under this item

TypeScript
leafChildrenCount?: number;
Property Value

number

visible

Whether Item is currently visible in Grid (i.e. in filtered rows)

TypeScript
visible?: boolean;
Property Value

boolean

visibleCount

How many times Item appears in the column in filtered rows

TypeScript
visibleCount?: number;
Property Value

number