RowSelectionOptions

external interface RowSelectionOptions<TData : RowData>(source)

Inheritors

Properties

Link copied to clipboard
abstract val enableMultiRowSelection: (row: Row<TData>) -> Boolean?
Link copied to clipboard
abstract val enableRowSelection: (row: Row<TData>) -> Boolean?
Link copied to clipboard
abstract val enableSubRowSelection: (row: Row<TData>) -> Boolean?

Enables/disables automatic sub-row selection when a parent row is selected, or a function that enables/disables automatic sub-row selection for each row. (Use in combination with expanding or grouping features) API Docs Guide

Link copied to clipboard
abstract val onRowSelectionChange: OnChangeFn<<Error class: unknown class><String, Boolean>>?

If provided, this function will be called with an updaterFn when state.rowSelection changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table. API Docs Guide