JavaScript/jQuery TreeList - Load Panel
The load panel is displayed while the UI component loads data. It consists of a loading indicator and text, both placed on a pane.
The load panel is shown only for remote data sources by default. To show it regardless of the data source type, assign true to the loadPanel.enabled property. Setting the same property to false disables the load panel completely.
- $(function() {
- $("#treeListContainer").dxTreeList({
- loadPanel: {
- enabled: true
- }
- });
- });
You can also control the load panel programmatically using the beginCustomLoading(messageText) and endCustomLoading() methods.
- var treeList = $("#treeListContainer").dxTreeList("instance");
- treeList.beginCustomLoading();
- // ...
- treeList.endCustomLoading();
Since the load panel is a DevExtreme LoadPanel UI component, you can declare any properties of this UI component in the TreeList's loadPanel object. For example, you can change the panel's size with the height and width properties, or employ another loading indicator using the indicatorSrc property.
- $(function() {
- $("#treeListContainer").dxTreeList({
- loadPanel: {
- height: 100,
- width: 250,
- indicatorSrc: "https://js.devexpress.com/Content/data/loadingIcons/rolling.svg"
- }
- });
- });