Hide the Pane
The pane is the element that lies under the loading indicator and text.
The pane is shown by default. To hide it, assign false to the showPane option.
JavaScript
$(function() { $("#loadPanelContainer").dxLoadPanel({ closeOnOutsideClick: true, showPane: false }); $("#buttonContainer").dxButton({ text: "Show the Load Panel", onClick: function () { $("#loadPanelContainer").dxLoadPanel("show"); } }); });
See Also
characters remaining