Docs
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
OpenRouter
WorkOS
Clerk
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
OpenRouter
WorkOS
Clerk
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
Table API Reference
Column API Reference
Row API Reference
Cell API Reference
Header API Reference
Features API Reference
Static Functions API Reference
Legacy API Reference

Row_ColumnGrouping

Interface: Row_ColumnGrouping

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

Properties

_groupingValuesCache

ts
_groupingValuesCache: Record<string, any>;
_groupingValuesCache: Record<string, any>;

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


getGroupingValue()

ts
getGroupingValue: (columnId) => unknown;
getGroupingValue: (columnId) => unknown;

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

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

Parameters

columnId

string

Returns

unknown


getIsGrouped()

ts
getIsGrouped: () => boolean;
getIsGrouped: () => boolean;

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

Checks whether this row represents a grouped row.

Returns

boolean


groupingColumnId?

ts
optional groupingColumnId: string;
optional groupingColumnId: string;

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

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


groupingValue?

ts
optional groupingValue: unknown;
optional groupingValue: unknown;

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

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