Skip to main content

LoadingPanel Class

In This Article

Contains settings related to the loading panel functionality.

#Declaration

TypeScript
declare class LoadingPanel

#Remarks

The ASPxRichEdit control displays a loading panel while waiting for a callback response.

Loading Panel

Use members provided by this class to disable the panel, show and hide it manually, or 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