LoadingPanel.enabled Property
Specifies whether the loading panel is enabled in the control.
Declaration
get enabled(): boolean
set enabled(value: boolean)
Property Value
Type | Description |
---|---|
boolean |
|
Remarks
Set the enabled property to false
to disable the Rich Text Editor loading panel. In this case, the show and hide methods are not in effect.
<dx:ASPxRichEdit ID="RichEdit" ClientInstanceName="richEdit" runat="server" ShowConfirmOnLosingChanges="false">
</dx:ASPxRichEdit>
richEdit.loadingPanel.enabled = false;
Note
This property does not affect a loading panel displayed in editor dialogs.
See Also