Angular LoadPanel - Overview
The LoadPanel is an overlay UI component notifying the viewer that loading is in progress.
The following code adds to your page a simple LoadPanel and a Button that invokes it. The closeOnOutsideClick property set to true instructs the LoadPanel to hide once a user clicks outside it.
HTML
TypeScript
- <dx-load-panel
- [closeOnOutsideClick]="true"
- [(visible)]="isLoadPanelVisible">
- </dx-load-panel>
- <dx-button
- text="Show the Load Panel"
- (onClick)="isLoadPanelVisible = true">
- </dx-button>
- import { DxLoadPanelModule, DxButtonModule } from "devextreme-angular";
- // ...
- export class AppComponent {
- isLoadPanelVisible: boolean = false;
- }
- @NgModule({
- imports: [
- // ...
- DxLoadPanelModule,
- DxButtonModule
- ],
- // ...
- })
See Also
- Configure a UI Component: Angular | Vue | React | jQuery | AngularJS | Knockout
- LoadPanel - Show and Hide Using the API
- LoadPanel - Customize the Appearance
- LoadPanel - Resize and Relocate
- LoadPanel API Reference
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.