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 var getIsAllPageRowsSelected: () -> Boolean

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

Link copied to clipboard
abstract var 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 var 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 var getSelectedRowModel: () -> RowModel<TData>

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

Link copied to clipboard
abstract var 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 var 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 var 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 var setRowSelection: (updater: Updater<RowSelectionState>) -> Unit

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

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

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

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

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