Defined in: features/row-selection/rowSelectionFeature.types.ts:83
TFeatures extends TableFeatures
TData extends RowData
getFilteredSelectedRowModel: () => RowModel<TFeatures, TData>;
Defined in: features/row-selection/rowSelectionFeature.types.ts:90
Returns the row model of all rows that are selected after filtering has been applied.
RowModel<TFeatures, TData>
getGroupedSelectedRowModel: () => RowModel<TFeatures, TData>;
Defined in: features/row-selection/rowSelectionFeature.types.ts:94
Returns the row model of all rows that are selected after grouping has been applied.
RowModel<TFeatures, TData>
getIsAllPageRowsSelected: () => boolean;
Defined in: features/row-selection/rowSelectionFeature.types.ts:98
Returns whether or not all rows on the current page are selected.
boolean
getIsAllRowsSelected: () => boolean;
Defined in: features/row-selection/rowSelectionFeature.types.ts:102
Returns whether or not all rows in the table are selected.
boolean
getIsSomePageRowsSelected: () => boolean;
Defined in: features/row-selection/rowSelectionFeature.types.ts:106
Returns whether or not any rows on the current page are selected.
boolean
getIsSomeRowsSelected: () => boolean;
Defined in: features/row-selection/rowSelectionFeature.types.ts:110
Returns whether or not any rows in the table are selected.
boolean
getPreSelectedRowModel: () => RowModel<TFeatures, TData>;
Defined in: features/row-selection/rowSelectionFeature.types.ts:114
Returns the core row model of all rows before row selection has been applied.
RowModel<TFeatures, TData>
getSelectedRowModel: () => RowModel<TFeatures, TData>;
Defined in: features/row-selection/rowSelectionFeature.types.ts:118
Returns the row model of all rows that are selected.
RowModel<TFeatures, TData>
getToggleAllPageRowsSelectedHandler: () => (event) => void;
Defined in: features/row-selection/rowSelectionFeature.types.ts:122
Returns a handler that can be used to toggle all rows on the current page.
(event): void;
unknown
void
getToggleAllRowsSelectedHandler: () => (event) => void;
Defined in: features/row-selection/rowSelectionFeature.types.ts:126
Returns a handler that can be used to toggle all rows in the table.
(event): void;
unknown
void
resetRowSelection: (defaultState?) => void;
Defined in: features/row-selection/rowSelectionFeature.types.ts:130
Resets the rowSelection state to the initialState.rowSelection, or true can be passed to force a default blank state reset to {}.
boolean
void
setRowSelection: (updater) => void;
Defined in: features/row-selection/rowSelectionFeature.types.ts:134
Sets or updates the state.rowSelection state.
void
toggleAllPageRowsSelected: (value?) => void;
Defined in: features/row-selection/rowSelectionFeature.types.ts:138
Selects/deselects all rows on the current page.
boolean
void
toggleAllRowsSelected: (value?) => void;
Defined in: features/row-selection/rowSelectionFeature.types.ts:142
Selects/deselects all rows in the table.
boolean
void