Skip to content

RowOperations

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

NameTypeDescriptionDefined in
deselectAllRows() => voidDeselects all rows in the data grid.core/services/row-service.svelte.ts:27
deselectRowsOnCurrentPage() => voidDeselects all rows on the current page.core/services/row-service.svelte.ts:17
pinRowToBottom(rowIdentifier) => voidPins a row to the bottom of the data grid.core/services/row-service.svelte.ts:49
pinRowToTop(rowIdentifier) => voidPins a row to the top of the data grid.core/services/row-service.svelte.ts:42
selectAllRows() => voidSelects all rows in the data grid.core/services/row-service.svelte.ts:22
selectRowsOnCurrentPage() => voidSelects all rows on the current page.core/services/row-service.svelte.ts:12
toggleGroupExpansion<TOriginalRow>(row) => voidToggles the expansion state of a group of rows.core/services/row-service.svelte.ts:70
toggleRowExpansion(rowIdentifier) => voidToggles the expansion state of a row.core/services/row-service.svelte.ts:63
toggleRowSelection(rowIdentifier) => voidToggles the selection of a row by its identifier.core/services/row-service.svelte.ts:34
unpinRow(rowIdentifier) => voidUnpins a row from the grid.core/services/row-service.svelte.ts:56