InFilterValueInfo
Information about items in the IN Column Filter
TypeScript
export interface InFilterValueInfo extendsExtends
Properties
| Property | Type | Description |
|---|---|---|
| children | InFilterValueInfo[] | |
| count | number | How many times Item appears in the column |
| isSelected | boolean | Whether Item is currently selected |
| leafChildrenCount | number | For the grouping scenario, how many leafs are there under this item |
| visible | boolean | Whether Item is currently visible in Grid (i.e. in filtered rows) |
| visibleCount | number | How many times Item appears in the column in filtered rows |
Property Details
children
TypeScript
children?: InFilterValueInfo[];Property Value
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