ASPxClientHtmlEditor.ActiveTabChanging Event
Fires on the client side before the active tab is changed within a control.
Declaration
ActiveTabChanging: ASPxClientEvent<ASPxClientHtmlEditorTabCancelEventHandler<ASPxClientHtmlEditor>>
Event Data
The ActiveTabChanging event's data class is ASPxClientHtmlEditorTabCancelEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
cancel | Gets or sets a value indicating whether the action which raised the event, should be canceled. |
name | Gets the name that uniquely identifies an editor tab. Inherited from ASPxClientHtmlEditorTabEventArgs. |
Remarks
Write a ActiveTabChanging event handler to perform specific actions on the client side before the active tab changes. You can use the event parameter’s properties to identify the newly selected tab name and cancel the execution of the command, if necessary.
See Also