ASPxClientHtmlEditor.CustomDialogClosed Event
Occurs on the client side after a custom dialog is closed.
#Declaration
CustomDialogClosed: ASPxClientEvent<ASPxClientHtmlEditorCustomDialogClosedEventHandler<ASPxClientHtmlEditor>>
#Event Data
The CustomDialogClosed event's data class is ASPxClientHtmlEditorCustomDialogClosedEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
data | Gets an object associated with the closed dialog. |
name |
Gets the name that uniquely identifies the processed custom dialog.
Inherited from ASPx |
status |
Gets the status of the closed custom dialog.
Inherited from ASPx |
#Remarks
Write a CustomDialogClosed event handler to perform a specific actions on the client side each time a custom dialog is closed. You can use the event parameter’s properties to identify the name of the custom dialog (ASPxClientHtmlEditorCustomDialogEventArgs.name), its status (ASPxClientHtmlEditorCustomDialogCloseEventArgsBase.status), and the data associated with closing the dialog (ASPxClientHtmlEditorCustomDialogClosedEventArgs.data).