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

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.v19.1.dll

Declaration

public event CustomDataCallbackEventHandler CustomDataCallback

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.

See Also