ASPxHtmlEditor.CustomDataCallback Event
Fires when a round trip to the server has been initiated by a call to the client ASPxClientHtmlEditor.PerformDataCallback method.
Namespace: DevExpress.Web.ASPxHtmlEditor
Assembly: DevExpress.Web.ASPxHtmlEditor.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Event Data
The CustomDataCallback event's data class is CustomDataCallbackEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Parameter | Gets a string that contains specific information (if any) passed from the client side. Inherited from CallbackEventArgsBase. |
Result | Gets or sets a string that contains specific information (if any) that needs to be passed to the client side for further processing. |
Remarks
The CustomDataCallback event allows any desired server-side processing to be performed, and any resulting required information to be passed to the client for further processing (if needed).
After the CustomDataCallback event has been processed on the server side, a result can be passed back to the client via the CallbackEventArgs.Result property. To receive the result on the client, handle the ASPxClientHtmlEditor.CustomDataCallback event.