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

TableOptions_ColumnResizing

Interface: TableOptions_ColumnResizing

Defined in: features/column-resizing/columnResizingFeature.types.ts:20

Properties

columnResizeDirection?

ts
optional columnResizeDirection: ColumnResizeDirection;

Defined in: features/column-resizing/columnResizingFeature.types.ts:32

Enables or disables right-to-left support for resizing the column. defaults to 'ltr'.


columnResizeMode?

ts
optional columnResizeMode: ColumnResizeMode;

Defined in: features/column-resizing/columnResizingFeature.types.ts:24

Determines when the columnSizing state is updated. onChange updates the state when the user is dragging the resize handle. onEnd updates the state when the user releases the resize handle.


enableColumnResizing?

ts
optional enableColumnResizing: boolean;

Defined in: features/column-resizing/columnResizingFeature.types.ts:28

Enables or disables column resizing for the column.


onColumnResizingChange?

ts
optional onColumnResizingChange: OnChangeFn<columnResizingState>;

Defined in: features/column-resizing/columnResizingFeature.types.ts:36

If provided, this function will be called with an updaterFn when state.columnResizing changes. This overrides the default internal state management, so you will also need to supply state.columnResizing from your own managed state.