ASPxClientRichEdit.loadingPanel Property
In This Article
Provides access to settings related to a loading panel functionality.
#Declaration
TypeScript
loadingPanel: LoadingPanel
#Property Value
Type | Description |
---|---|
Loading |
An object that contains settings related to a loading panel. |
#Remarks
The loadingPanel property allows you to perform the following actions:
- disable the loading panel;
- show and hide the loading panel manually;
- provide a custom loading panel.
<dx:ASPxRichEdit ID="RichEdit" ClientInstanceName="richEdit" runat="server" ShowConfirmOnLosingChanges="false">
</dx:ASPxRichEdit>
richEdit.loadingPanel.show();
...
richEdit.loadingPanel.hide();
See Also