AutoGroupColumnHeaderContext
Context for Columns created automatically by AG Grid when Row Grouping
TypeScript
export interface AutoGroupColumnHeaderContext extendsExtends
Properties
| Property | Description |
|---|---|
| columnId | Id of the Column |
| columnType | Auto-generated Row Group Column (when RowGroupDisplayType is single) |
| groupedColumnIds | Ids of all Row Grouped Columns |
| adaptableContext | Custom application Context provided in AdaptableOptions.adaptableContext |
Property Details
columnId
Id of the Column
TypeScript
columnId: string;Property Value
string
columnType
Auto-generated Row Group Column (when RowGroupDisplayType is single)
TypeScript
columnType: 'autoGroupColumn';Property Value
'autoGroupColumn'
groupedColumnIds
Ids of all Row Grouped Columns
TypeScript
groupedColumnIds: string[];Property Value
string[]
adaptableContext
Inherited from BaseContext
Custom application Context provided in AdaptableOptions.adaptableContext
TypeScript
adaptableContext: any;Property Value
any