ColumnSizingInstance

external interface ColumnSizingInstance(source)

Inheritors

Properties

Link copied to clipboard
abstract val getCenterTotalSize: () -> Int

If pinning, returns the total size of the center portion of the table by calculating the sum of the sizes of all unpinned/center leaf-columns. API Docs Guide

Link copied to clipboard
abstract val getLeftTotalSize: () -> Int

Returns the total size of the left portion of the table by calculating the sum of the sizes of all left leaf-columns. API Docs Guide

Link copied to clipboard
abstract val getRightTotalSize: () -> Int

Returns the total size of the right portion of the table by calculating the sum of the sizes of all right leaf-columns. API Docs Guide

Link copied to clipboard
abstract val getTotalSize: () -> Int

Returns the total size of the table by calculating the sum of the sizes of all leaf-columns. API Docs Guide

Link copied to clipboard
abstract val resetColumnSizing: (defaultState: Boolean?) -> Unit

Resets column sizing 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. API Docs Guide

Link copied to clipboard
abstract val resetHeaderSizeInfo: (defaultState: Boolean?) -> Unit

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. API Docs Guide

Link copied to clipboard
abstract val setColumnSizing: (updater: Updater<<Error class: unknown class><String, Int>>) -> Unit

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

Link copied to clipboard

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