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.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Property Value
Type | Description |
---|---|
Object | An object that represents any information that needs to be sent to the client-side Java |
#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.
#Related Links
#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.
#Related Links
#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.