RowSelectionInstance

external interface RowSelectionInstance<TData : RowData>(source)

Inheritors

Properties

Link copied to clipboard

Returns the row model of all rows that are selected after filtering has been applied. API Docs Guide

Link copied to clipboard

Returns the row model of all rows that are selected after grouping has been applied. API Docs Guide

Link copied to clipboard
abstract val getIsAllPageRowsSelected: () -> Boolean

Returns whether or not all rows on the current page are selected. API Docs Guide

Link copied to clipboard
abstract val getIsAllRowsSelected: () -> Boolean

Returns whether or not all rows in the table are selected. API Docs Guide

Link copied to clipboard

Returns whether or not any rows on the current page are selected. API Docs Guide

Link copied to clipboard
abstract val getIsSomeRowsSelected: () -> Boolean

Returns whether or not any rows in the table are selected. API Docs Guide

Link copied to clipboard

Returns the core row model of all rows before row selection has been applied. API Docs Guide

Link copied to clipboard
abstract val getSelectedRowModel: () -> RowModel<TData>

Returns the row model of all rows that are selected. API Docs Guide

Link copied to clipboard
abstract val getToggleAllPageRowsSelectedHandler: () -> (event: Any) -> Unit

Returns a handler that can be used to toggle all rows on the current page. API Docs Guide

Link copied to clipboard
abstract val getToggleAllRowsSelectedHandler: () -> (event: Any) -> Unit

Returns a handler that can be used to toggle all rows in the table. API Docs Guide

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

Resets the rowSelection state to the initialState.rowSelection, or true can be passed to force a default blank state reset to {}. API Docs Guide

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

Sets or updates the state.rowSelection state. API Docs Guide

Link copied to clipboard
abstract val toggleAllPageRowsSelected: (value: Boolean?) -> Unit

Selects/deselects all rows on the current page. API Docs Guide

Link copied to clipboard
abstract val toggleAllRowsSelected: (value: Boolean?) -> Unit

Selects/deselects all rows in the table. API Docs Guide