RowInfo

Provides meta data about a Row in Adaptable

TypeScript
export interface

Properties

PropertyTypeDescription
isDisplayedbooleanIs Row displayed (ie. filtered, not necessarily in viewport)
isExpandedbooleanIs Row expanded (if a group row)
isGroupbooleanIs Row grouped
isMasterbooleanIs Row a Master Row (in a Master-Detail grid)
isSelectedbooleanIs Row selected
rowGroupLevelnumberWhat level the Row is (if Row Grouping is active)

Property Details

isDisplayed

Is Row displayed (ie. filtered, not necessarily in viewport)

TypeScript
isDisplayed?: boolean;
Property Value

boolean

isExpanded

Is Row expanded (if a group row)

TypeScript
isExpanded?: boolean;
Property Value

boolean

isGroup

Is Row grouped

TypeScript
isGroup?: boolean;
Property Value

boolean

isMaster

Is Row a Master Row (in a Master-Detail grid)

TypeScript
isMaster?: boolean;
Property Value

boolean

isSelected

Is Row selected

TypeScript
isSelected?: boolean;
Property Value

boolean

rowGroupLevel

What level the Row is (if Row Grouping is active)

TypeScript
rowGroupLevel?: number;
Property Value

number