JavaScript/jQuery TreeList - stateStoring
State storing enables the widget to save applied settings and restore them the next time the widget is loaded. These settings include filtering, sorting, column order and width, selection, and others. Assign true to the stateStoring.enabled option to enable this functionality.
See Also
customLoad
Specifies a function that is executed on state loading. Applies only if the type is 'custom'.
The widget state. As a rule, it is a state that you save within the customSave function.
Use the customSave and customLoad functions to manually implement state storing: in customSave, save the state to a custom storage; in customLoad, load it. You can also adjust the state in both functions. See an example in the customSave topic.
customSave
Specifies a function that is executed on state saving. Applies only if the type is "custom".
Use the customSave and customLoad functions to manually implement state storing: in customSave, save the state to a custom storage; in customLoad, load it. You can also adjust the state in both functions.
In the following code, the state is saved and loaded from a remote storage:
jQuery
function sendStorageRequest (storageKey, dataType, method, data) { var deferred = new $.Deferred; var storageRequestSettings = { url: "https://url/to/your/storage/" + JSON.stringify(storageKey), headers: { "Accept" : "text/html", "Content-Type" : "text/html" }, method: method, dataType: dataType, success: function (data) { deferred.resolve(data); }, fail: function (error) { deferred.reject(); } }; if (data) { storageRequestSettings.data = JSON.stringify(data); } $.ajax(storageRequestSettings); return deferred.promise(); } $(function() { $("#treeListContainer").dxTreeList({ // ... stateStoring: { enabled: true, type: "custom", customLoad: function () { return sendStorageRequest("storageKey", "json", "GET");; }, customSave: function (state) { sendStorageRequest("storageKey", "text", "PUT", state); } }, }); })
Angular
import { HttpClient, HttpClientModule, HttpHeaders, HttpRequest } from "@angular/common/http"; import { DxTreeListModule } from "devextreme-angular"; import "rxjs/add/operator/toPromise"; import "rxjs/add/operator/catch"; // ... export class AppComponent { constructor(private httpClient: HttpClient) { } sendStorageRequest = (storageKey, dataType, method, data) => { let url = "https://url/to/your/storage/" + JSON.stringify(storageKey); let req: HttpRequest = new HttpRequest(method, url, { headers: new HttpHeaders({ "Accept": "text/html", "Content-Type": "text/html" }), responseType: dataType }); if (data) { req.body = JSON.stringify(data); } return httpClient.request(req) .toPromise(); } loadState = () => { return this.sendStorageRequest("storageKey", "json", "Get"); } saveState = (state) => { this.sendStorageRequest("storageKey", "text", "Put", state); } } @NgModule({ imports: [ // ... DxTreeListModule, HttpClientModule ], // ... })
<dx-tree-list ...> <dxo-state-storing [enabled]="true" type="custom" [customLoad]="loadState" [customSave]="saveState"> </dxo-state-storing> </dx-tree-list>
savingTimeout
Specifies the delay in milliseconds between when a user makes a change and when this change is saved.
type
This option accepts the following values:
"sessionStorage"
The state is stored for the duration of the browser's session."localStorage"
The state is stored in the local storage and has no expiration time."custom"
Puts state storing into manual mode. You need to implement the customSave and customLoad functions.
Use the StateStoringType
enum to specify this option when the widget is used as an ASP.NET MVC Control. This enum accepts the following values: LocalStorage
, SessionStorage
, and Custom
.
If you have technical questions, please create a support ticket in the DevExpress Support Center.