IRowSelectionEventArgs

The event arguments when the selection state of a row is being changed The event is cancelable

Represents an array of all added rows Whenever a row has been selected, the array is "refreshed" with the selected rows

added: any[]

Defined in projects/igniteui-angular/grids/core/src/common/events.ts:222

Optional allRowsSelected

Section titled "allRowsSelected"

Indicates whether or not all rows of the grid have been selected

allRowsSelected?: boolean

Defined in projects/igniteui-angular/grids/core/src/common/events.ts:236

Inherited from: CancelableEventArgs

Provides the ability to cancel the event.

cancel: boolean

Defined in projects/igniteui-angular/core/src/core/utils.ts:421

Represents the original event, that has triggered the selection change selecting, deselecting

event?: Event

Defined in projects/igniteui-angular/grids/core/src/common/events.ts:234

Represents the newly selected rows

newSelection: any[]

Defined in projects/igniteui-angular/grids/core/src/common/events.ts:217

Represents an array of rows, that have already been selected

oldSelection: any[]

Defined in projects/igniteui-angular/grids/core/src/common/events.ts:215

Inherited from: IBaseEventArgs

Provides reference to the owner component.

owner?: any

Defined in projects/igniteui-angular/core/src/core/utils.ts:428

Represents an array of all rows, removed from the selection Whenever a row has been deselected, the array is "refreshed" with the rows, that have been previously selected, but are no longer

removed: any[]

Defined in projects/igniteui-angular/grids/core/src/common/events.ts:228