aspnet-devexpress-dot-web-dot-aspxgridbase-46936158.md
Fires when the row selection changes.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
public event EventHandler SelectionChanged
Public Event SelectionChanged As EventHandler
The SelectionChanged event's data class is EventArgs.
The SelectionChanged event fires in the following cases:
To allow the control to raise the server-side SelectionChanged event, use one of the following options:
In the client-side SelectionChanged event handler, set the processOnServer property to true. In this case, the control raises the client-side event and then raises the server-side SelectionChanged event.
Set the ProcessSelectionChangedOnServer property to true. In this case, the client-side event does not fire.
For more information on row selection in a particular control, refer to the following topics:
See Also