row_getIsGrouped

Function: row_getIsGrouped()

ts
function row_getIsGrouped<TFeatures, TData>(row): boolean;

Defined in: features/column-grouping/columnGroupingFeature.utils.ts:249

Checks whether this row was created as a grouped row.

Grouped rows carry a groupingColumnId; ordinary leaf rows do not.

Type Parameters

TFeatures

TFeatures extends TableFeatures

TData

TData extends RowData

Parameters

row

Row_Core\<`TFeatures`, `TData`\> & ExtractFeatureMapTypes\<`TFeatures`, [`Row_FeatureMap`](../../index/interfaces/Row_FeatureMap.md)\<`TFeatures`, `TData`\>> & Partial\<[`Row_ColumnGrouping`](../../index/interfaces/Row_ColumnGrouping.md)\>

Returns

boolean

Example

ts
const isGrouped = row_getIsGrouped(row)