Interface GridMultiSelectionApi
Properties
selectRowRange
selectRowRange: ((range: { endId: GridRowId; startId: GridRowId; },
isSelected?: boolean,
resetSelection?: boolean) => void) Type declaration
- (range, isSelected?, resetSelection?): void
Parameters
- range: {
endId: GridRowId;
startId: GridRowId;
} Optional
isSelected: booleanOptional
resetSelection: boolean
Returns void
selectRows
selectRows: ((ids: GridRowId[],
isSelected?: boolean,
resetSelection?: boolean) => void) Type declaration
- (ids, isSelected?, resetSelection?): void
Parameters
- ids: GridRowId[]
Optional
isSelected: booleanOptional
resetSelection: boolean
Returns void
Change the selection state of all the selectable rows in a range.