RowOperations: object
Defined in: core/services/row-service.svelte.ts:7
Interface for row operations in the data grid, including selection, pinning, and expansion.
Type declaration
Name | Type | Description | Defined in |
---|
deselectAllRows | () => void | Deselects all rows in the data grid. | core/services/row-service.svelte.ts:27 |
deselectRowsOnCurrentPage | () => void | Deselects all rows on the current page. | core/services/row-service.svelte.ts:17 |
pinRowToBottom | (rowIdentifier ) => void | Pins a row to the bottom of the data grid. | core/services/row-service.svelte.ts:49 |
pinRowToTop | (rowIdentifier ) => void | Pins a row to the top of the data grid. | core/services/row-service.svelte.ts:42 |
selectAllRows | () => void | Selects all rows in the data grid. | core/services/row-service.svelte.ts:22 |
selectRowsOnCurrentPage | () => void | Selects all rows on the current page. | core/services/row-service.svelte.ts:12 |
toggleGroupExpansion | <TOriginalRow >(row ) => void | Toggles the expansion state of a group of rows. | core/services/row-service.svelte.ts:70 |
toggleRowExpansion | (rowIdentifier ) => void | Toggles the expansion state of a row. | core/services/row-service.svelte.ts:63 |
toggleRowSelection | (rowIdentifier ) => void | Toggles the selection of a row by its identifier. | core/services/row-service.svelte.ts:34 |
unpinRow | (rowIdentifier ) => void | Unpins a row from the grid. | core/services/row-service.svelte.ts:56 |