Docs
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
Neon
WorkOS
Clerk
Convex
Electric
PowerSync
Sentry
Railway
Prisma
Strapi
Unkey
CodeRabbit
Cloudflare
AG Grid
SerpAPI
Netlify
Neon
WorkOS
Clerk
Convex
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
Legacy API Reference
Enterprise
Features API Reference

Row_RowExpanding

Interface: Row_RowExpanding

Defined in: features/row-expanding/rowExpandingFeature.types.ts:14

Properties

getCanExpand()

ts
getCanExpand: () => boolean;

Defined in: features/row-expanding/rowExpandingFeature.types.ts:18

Returns whether the row can be expanded.

Returns

boolean


getIsAllParentsExpanded()

ts
getIsAllParentsExpanded: () => boolean;

Defined in: features/row-expanding/rowExpandingFeature.types.ts:22

Returns whether all parent rows of the row are expanded.

Returns

boolean


getIsExpanded()

ts
getIsExpanded: () => boolean;

Defined in: features/row-expanding/rowExpandingFeature.types.ts:26

Returns whether the row is expanded.

Returns

boolean


getToggleExpandedHandler()

ts
getToggleExpandedHandler: () => () => void;

Defined in: features/row-expanding/rowExpandingFeature.types.ts:30

Returns a function that can be used to toggle the expanded state of the row. This function can be used to bind to an event handler to a button.

Returns

ts
(): void;
Returns

void


toggleExpanded()

ts
toggleExpanded: (expanded?) => void;

Defined in: features/row-expanding/rowExpandingFeature.types.ts:34

Toggles the expanded state (or sets it if expanded is provided) for the row.

Parameters

expanded?

boolean

Returns

void