Back to Table

Table_ColumnResizing

docs/reference/interfaces/Table_ColumnResizing.md

8.21.31.4 KB
Original Source

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