JavaScript/jQuery TreeList - Data Caching
The TreeList caches data by default. This allows the UI component to decrease the loading time when a user sorts and filters data or expands a row the second time. To update data in cache, call the refresh() method of the UI component or the reload() method of the DataSource.
jQuery
JavaScript
$("#treeListContainer").dxTreeList("refresh"); // ===== or ===== var treeListDataSource = $("#treeListContainer").dxTreeList("getDataSource"); treeListDataSource.reload();
Angular
TypeScript
import { ..., ViewChild } from "@angular/core"; import { DxTreeListModule, DxTreeListComponent } from "devextreme-angular"; // ... export class AppComponent { @ViewChild(DxTreeListComponent, { static: false }) treeList: DxTreeListComponent; // Prior to Angular 8 // @ViewChild(DxTreeListComponent) treeList: DxTreeListComponent; refreshData () { this.treeList.instance.refresh(); // ===== or ===== let treeListDataSource = this.treeList.instance.getDataSource(); treeListDataSource.reload(); } } @NgModule({ imports: [ // ... DxTreeListModule ], // ... })
NOTE
When data processing operations are delegated to the server, data is loaded every time these operations are performed even if caching is enabled.
If your data source changes frequently, disable caching by assigning false to the cacheEnabled property.
jQuery
JavaScript
$(function() { $("#treeListContainer").dxTreeList({ // ... cacheEnabled: false }); });
Angular
HTML
TypeScript
<dx-tree-list ... [cacheEnabled]="false"> </dx-tree-list>
import { DxTreeListModule } from "devextreme-angular"; // ... export class AppComponent { // ... } @NgModule({ imports: [ // ... DxTreeListModule ], // ... })
See Also
- Call Methods: Angular | Vue | React | jQuery | AngularJS | Knockout | ASP.NET MVC 5 | ASP.NET Core
- TreeList - Access the DataSource
- TreeList Demos
- TreeList 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.