aspnet-devexpress-dot-web-dot-aspxgridcustomdatacallbackeventargs.md
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.v25.2.dll
NuGet Package : DevExpress.Web
public object Result { get; set; }
Public Property Result As Object
| Type | Description |
|---|---|
| Object |
An object that represents any information that needs to be sent to the client-side JavaScript function.
|
Find control-specific information (for ASPxGridView, ASPxCardView or ASPxVerticalGrid) in the sections below.
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.
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.
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.
See Also
ASPxGridCustomDataCallbackEventArgs Class