All docs
V17.2
24.1
The page you are viewing does not exist in version 24.1.
23.2
The page you are viewing does not exist in version 23.2.
23.1
The page you are viewing does not exist in version 23.1.
22.2
The page you are viewing does not exist in version 22.2.
22.1
The page you are viewing does not exist in version 22.1.
21.2
The page you are viewing does not exist in version 21.2.
21.1
The page you are viewing does not exist in version 21.1.
20.2
The page you are viewing does not exist in version 20.2.
20.1
The page you are viewing does not exist in version 20.1.
19.2
The page you are viewing does not exist in version 19.2.
19.1
The page you are viewing does not exist in version 19.1.
18.2
18.1
17.2
A newer version of this page is available. Switch to the current version.

jQuery SPA Framework - StateManager

An object that stores the current application state.

import StateManager from "devextreme/framework/state_manager"
Type:

Object

In an application, there can be different information that should be saved and restored when required, e.g., when the application is closed and then opened. For instance, the current navigation history should be saved when closing the application so that the last displayed view is displayed again when reopening the application. Thus, the navigation manager implements special methods that characterize it as a state source. As there can be several state sources in an application, the application should have a state manager that "knows" about all of them and calls their methods to save/restore their states.

The StateManager object has a collection of state sources that should be notified when a request to save/restore the current state arrives. By default, only the navigation manager is added to this collection. To add another state source to this collection, use the state manager's addStateSource(stateSource) method. You can remove a state source from this collection when required by using the removeStateSource(stateSource) method.

When the HtmlApplication requests to save/clear/restore the application state, the StateManager object calls the saveState()/restoreState()/clearState() method, in which the corresponding method of each of the "known" state sources is called.

By default, the session storage is used as a state storage. You can use another storage specifying it using the stateStorage option of the HtmlApplication object.

Configuration

This section describes configuration options used to create a StateManager object.

Name Description
storage

A storage to which the state manager saves the application state.

Methods

This section describes the methods used to manipulate the application state.

Name Description
addStateSource(stateSource)

Adds an object that implements an interface of a state source to the state manager's collection of state sources.

clearState()

Removes the application state that has been saved by the saveState() method to the state storage.

removeStateSource(stateSource)

Removes a specified state source from the state manager's collection of state sources.

restoreState()

Restores the application state that has been saved by the saveState() method to the state storage.

saveState()

Saves the current application state.