The LoadPanel is an overlay component used to notify users that a process is in progress. In this demo, you can see how to initialize and configure the component.
Show and Hide the Indicator and Pane
LoadPanel elements (a message and an animated load indicator) are displayed on a pane. If you want to hide it, set the
showPane
property to
false
. You can also disable the
showIndicator
property to hide the animated load indicator. In this case, the LoadPanel displays only the
message
. In this demo, you can use the "With indicator" and "With pane" checkboxes to change the visibility of the load indicator and pane.
Configure the Background Shade
When LoadPanel is displayed, it shades the background. Use the
shadingColor
property to specify the color of the shade. You can also specify the element that should be shaded. For this, assign the element's CSS selector to the
container
property. If you do not want to shade the background, disable the
shading
property. In this demo, you can uncheck the "With overlay" checkbox to do it.
Users can hide LoadPanel when they click outside it if you enable the
hideOnOutsideClick
property. Use the "Hide on outside click" checkbox to control this functionality in this demo.
LoadPanel also allows you to handle the show and hide events. Use the
onShowing
and
onHiding
functions to handle the events before they occur and possibily cancel them. Use the
onShown
and
onHidden
functions to perform required actions after the events are raised.
Feel free to share demo-related thoughts here.
If you have technical questions, please
create a support ticket
in the DevExpress Support Center.
Thank you for the feedback!
const showEmployeeInfo = function (employee) {
$('.birth-date').text(employee.Birth_Date || '');
$('.city').text(employee.City || '');
$('.zipcode').text(employee.Zipcode || '');
$('.address-info').text(employee.Address || '');
$('.mobile-phone').text(employee.Mobile_Phone || '');
$('.email').text(employee.Email || '');
$('.show-panel').dxButton({
text: 'Load Data',
onClick: showLoadPanel,
const loadPanel = $('.loadpanel').dxLoadPanel({
shadingColor: 'rgba(0,0,0,0.4)',
position: { of: '#employee' },
visible: false,
showIndicator: true,
showPane: true,
shading: true,
hideOnOutsideClick: false,
onShown() {
setTimeout(() => {
loadPanel.hide();
}, 3000);
onHidden() {
showEmployeeInfo(employee);
}).dxLoadPanel('instance');
$('.with-indicator').dxCheckBox({
value: true,
text: 'With indicator',
onValueChanged(e) {
loadPanel.option('showIndicator', e.value);
$('.with-overlay').dxCheckBox({
value: true,
text: 'With overlay',
onValueChanged(e) {
loadPanel.option('shading', e.value);
$('.with-pane').dxCheckBox({
value: true,
text: 'With pane',
onValueChanged(e) {
loadPanel.option('showPane', e.value);
$('.outside-click').dxCheckBox({
value: false,
text: 'Hide on outside click',
onValueChanged(e) {
loadPanel.option('hideOnOutsideClick', e.value);
const employee = {
Full_Name: 'John Heart',
Title: 'CEO',
Birth_Date: '03/16/1964',
Prefix: 'Mr.',
Address: '351 S Hill St.',
City: 'Los Angeles',
Zipcode: 90013,
Email: 'jheart@dx-email.com',
Skype: 'jheart_DX_skype',
Home_Phone: '(213) 555-9208',
Mobile_Phone: '(213) 555-9392',
All trademarks or registered trademarks are property of their respective owners.
Use of this site constitutes acceptance of the Developer Express Inc
Website Terms of Use
,
Privacy Policy (Updated)
, and
.
Use of DevExtreme UI components/libraries constitutes acceptance of the Developer Express Inc End User License Agreement.
FAQs:
Licensing
|
DevExpress Support Services
|
Supported Versions & Requirements
|
Maintenance Releases