RowPinningOptions

external interface RowPinningOptions<TData : RowData>(source)

Inheritors

Properties

Link copied to clipboard
abstract var enableRowPinning: (row: Row<TData>) -> Boolean?

Enables/disables row pinning for the table. Defaults to true. API Docs Guide

Link copied to clipboard
abstract var keepPinnedRows: Boolean?

When false, pinned rows will not be visible if they are filtered or paginated out of the table. When true, pinned rows will always be visible regardless of filtering or pagination. Defaults to true. API Docs Guide

Link copied to clipboard

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