Skip to main content
A newer version of this page is available. .
Tab

ASPxGridBehaviorSettings.ProcessSelectionChangedOnServer Property

Gets or sets a value that specifies whether selection changes should be processed on the server side.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(false)]
public bool ProcessSelectionChangedOnServer { get; set; }

Property Value

Type Default Description
Boolean **false**

true, to process the event on the server side; false, to handle it on the client side.

Property Paths

You can access this nested property as listed below:

Show 16 property paths
Library Object Type Path to ProcessSelectionChangedOnServer
ASP.NET Controls and MVC Extensions ASPxCardView
.SettingsBehavior .ProcessSelectionChangedOnServer
ASPxGridView
.SettingsBehavior .ProcessSelectionChangedOnServer
ASPxVerticalGrid
.SettingsBehavior .ProcessSelectionChangedOnServer
GridViewProperties
.SettingsBehavior .ProcessSelectionChangedOnServer
ASP.NET Bootstrap Controls BootstrapCardView
.SettingsBehavior .ProcessSelectionChangedOnServer
BootstrapGridView
.SettingsBehavior .ProcessSelectionChangedOnServer
ASP.NET MVC Extensions CardViewSettings
.SettingsBehavior .ProcessSelectionChangedOnServer
CardViewSettings<CardType>
.SettingsBehavior .ProcessSelectionChangedOnServer
GridViewSettings
.SettingsBehavior .ProcessSelectionChangedOnServer
GridViewSettings<RowType>
.SettingsBehavior .ProcessSelectionChangedOnServer
MVCxCardView
.SettingsBehavior .ProcessSelectionChangedOnServer
MVCxGridView
.SettingsBehavior .ProcessSelectionChangedOnServer
MVCxGridViewProperties
.SettingsBehavior .ProcessSelectionChangedOnServer
MVCxVerticalGrid
.SettingsBehavior .ProcessSelectionChangedOnServer
VerticalGridSettings
.SettingsBehavior .ProcessSelectionChangedOnServer
VerticalGridSettings<ColumnType>
.SettingsBehavior .ProcessSelectionChangedOnServer

Remarks

Find control-specific information (for ASPxGridView, ASPxCardView or ASPxVerticalGrid) in the sections below.

ASPxGridView

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.

Grid View - Getting Started

ASPxCardView

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.

Card View - Getting Started

ASPxVerticalGrid

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.

Vertical Grid - Getting Started

See Also