aspnet-devexpress-dot-web-dot-aspxgridbehaviorsettings-97a99964.md
Gets or sets a value that specifies whether selection changes should be processed on the server side.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue(false)]
public bool ProcessSelectionChangedOnServer { get; set; }
<DefaultValue(False)>
Public Property ProcessSelectionChangedOnServer As Boolean
| Type | Default | Description |
|---|---|---|
| Boolean | false |
true, to process the event on the server side; false, to handle it on the client side.
|
Find control-specific information (for ASPxGridView, ASPxCardView or ASPxVerticalGrid) in the sections below.
If the ProcessSelectionChangedOnServer property is set to false, the selection change raises the client-side ASPxClientGridView.SelectionChanged event.
Setting this property to true indicates that selection processing of changes should be performed on the server side. In this case, the client-side ASPxClientGridView.SelectionChanged event is not fired. On the server side, the ASPxGridBase.SelectionChanged event fires, which if handled, allows any desired server-side action to be performed.
If the ProcessSelectionChangedOnServer property is set to false, the selection change raises the client-side ASPxClientCardView.SelectionChanged event.
Setting this property to true indicates that selection processing of changes should be performed on the server side. In this case, the client-side ASPxClientCardView.SelectionChanged event is not fired. On the server side, the ASPxGridBase.SelectionChanged event fires, which if handled, allows any desired server-side action to be performed.
If the ProcessSelectionChangedOnServer property is set to false, the selection change raises the client-side ASPxClientVerticalGrid.SelectionChanged event.
Setting this property to true indicates that selection processing of changes should be performed on the server side. In this case, the client-side ASPxClientVerticalGrid.SelectionChanged event is not fired. On the server side, the ASPxGridBase.SelectionChanged event fires, which if handled, allows any desired server-side action to be performed.
See Also
ASPxGridBehaviorSettings Class