HTML Editor for ASP.NET AJAX

Professional Edition
HtmlEditor InDialog Method

Returns if a dialog is currently displayed.

Namespace: Winthusiasm.HtmlEditor

Syntax
InDialog()
Parameters
None.

Return Value
Returns true if a dialog is currently displayed, and false otherwise.

Remarks
Use the InDialog method to determine if a dialog is currently displayed by the editor.

Examples
First get a reference to the client-side editor:
var editor = $find('<%= Editor.ClientID %>');
Then use it to determine if a dialog is displayed:
var inDialog = editor.InDialog();