Row_ColumnGrouping

Interface: Row_ColumnGrouping

Defined in: features/column-grouping/columnGroupingFeature.types.ts:129

Properties

_groupingValuesCache

ts
_groupingValuesCache: Record<string, any>;

Defined in: features/column-grouping/columnGroupingFeature.types.ts:130


getGroupingValue()

ts
getGroupingValue: (columnId) => unknown;

Defined in: features/column-grouping/columnGroupingFeature.types.ts:134

Reads the value used to group this row for a column id.

Parameters

columnId

string

Returns

unknown


getIsGrouped()

ts
getIsGrouped: () => boolean;

Defined in: features/column-grouping/columnGroupingFeature.types.ts:138

Checks whether this row represents a grouped row.

Returns

boolean


groupingColumnId?

ts
optional groupingColumnId: string;

Defined in: features/column-grouping/columnGroupingFeature.types.ts:142

If this row is grouped, this is the id of the column that this row is grouped by.


groupingValue?

ts
optional groupingValue: unknown;

Defined in: features/column-grouping/columnGroupingFeature.types.ts:146

If this row is grouped, this is the unique/shared value for the groupingColumnId for all of the rows in this group.