Skip to main content
A newer version of this page is available. .

ICustomLoadingPanel Interface

Defines custom loading panel members.

Declaration

interface ICustomLoadingPanel

Remarks

The ICustomLoadingPanel interface allows you to implement a custom loading panel for the ASPxRichEdit control.

Example

The code sample below demonstrates an implementation of the ICustomLoadingPanel interface.

richEdit.loadingPanel.customPanel = new function() {
  this.show = function() {
    this.panel.style.display = ''; 
    this.visible = true;
  };
  this.hide = function() {
    this.panel.style.display = 'none'; 
    this.visible = false;
  };
  this.panel = document.createElement('div');
  this.panel.textContent = "Loading...";
  this.panel.style.position = 'absolute';
  this.panel.style.zIndex = 1000;
  this.panel.style.backgroundColor = 'green'
  this.panel.style.top = '50%';
  this.panel.style.left = '50%';
  document.documentElement.appendChild(this.panel);
  this.hide();
};
See Also