ASPxClientRichEdit.loadingPanel Property
Provides access to settings related to a loading panel functionality.
Declaration
loadingPanel: LoadingPanel
Property Value
Type | Description |
---|---|
LoadingPanel | 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