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

ASPxGridCustomDataCallbackEventArgs.Result Property

Gets or sets a value that contains specific information (if any) that needs to be passed to the client side for further processing.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public object Result { get; set; }

Property Value

Type Description
Object

An object that represents any information that needs to be sent to the client-side JavaScript function.

Remarks

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

ASPxGridView

The ASPxClientGridView.GetValuesOnCustomCallback method posts back to the server using the callback technology and generates a server-side ASPxGridView.CustomDataCallback event.

After the callback is processed in the ASPxGridView.CustomDataCallback event’s handler, the resulting information, specified by the Result property, can be passed back to the client side’s function specified by the ASPxClientGridView.GetValuesOnCustomCallback method’s onCallback parameter.

Grid View - Getting Started

ASPxCardView

The ASPxClientCardView.GetValuesOnCustomCallback method posts back to the server using the callback technology and generates a server-side ASPxCardView.CustomDataCallback event.

After the callback is processed in the ASPxCardView.CustomDataCallback event’s handler, the resulting information, specified by the Result property, can be passed back to the client side’s function specified by the ASPxClientCardView.GetValuesOnCustomCallback method’s onCallback parameter.

Card View - Getting Started

ASPxVerticalGrid

The ASPxClientVerticalGrid.GetValuesOnCustomCallback method posts back to the server using the callback technology and generates a server-side ASPxVerticalGrid.CustomDataCallback event.

After the callback is processed in the ASPxVerticalGrid.CustomDataCallback event’s handler, the resulting information, specified by the Result property, can be passed back to the client side’s function specified by the ASPxClientVerticalGrid.GetValuesOnCustomCallback method’s onCallback parameter.

Vertical Grid - Getting Started

See Also