RowGroupColumnHeaderContext

Context for Columns created when Row Grouping

TypeScript
export interface RowGroupColumnHeaderContext extends
Extends

BaseColumnHeaderContext

Properties

PropertyDescription
columnIdId of the Column
columnTypeA Row Grouped Column (created in both Table and Pivot Layout)
groupColumnIdId of Row Grouped Column
adaptableContextCustom application Context provided in AdaptableOptions.adaptableContext

Property Details

columnId

Id of the Column

TypeScript
columnId: string;
Property Value

string

columnType

A Row Grouped Column (created in both Table and Pivot Layout)

TypeScript
columnType: 'rowGroupColumn';
Property Value

'rowGroupColumn'

groupColumnId

Id of Row Grouped Column

TypeScript
groupColumnId: string;
Property Value

string

adaptableContext

Inherited from BaseContext

Custom application Context provided in AdaptableOptions.adaptableContext

TypeScript
adaptableContext: any;
Property Value

any