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

Table_ColumnResizing

Interface: Table_ColumnResizing

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

Properties

resetHeaderSizeInfo()

ts
resetHeaderSizeInfo: (defaultState?) => void;

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

Resets column sizing info to its initial state. If defaultState is true, the default state for the table will be used instead of the initialValue provided to the table.

Parameters

defaultState?

boolean

Returns

void


setcolumnResizing()

ts
setcolumnResizing: (updater) => void;

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

Sets the column sizing info state using an updater function or a value. This will trigger the underlying oncolumnResizingChange function if one is passed to the table options, otherwise the state will be managed automatically by the table.

Parameters

updater

Updater<columnResizingState>

Returns

void