LoadingPanel.show Method
Shows the loading panel.
Declaration
show(): void
Remarks
Use the show and hide methods on the client side to show and hide the loading panel.
<dx:ASPxRichEdit ID="RichEdit" ClientInstanceName="richEdit" runat="server" ShowConfirmOnLosingChanges="false">
</dx:ASPxRichEdit>
richEdit.loadingPanel.show();
...
richEdit.loadingPanel.hide();
Note
When the enabled property is set to false
, the loading panel is disabled and the show
and hide methods are not in effect.
See Also