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