Dimension.getIsStartUpdate

Syntax

getIsStartUpdate();

Description

The getIsStartUpdate method returns whether the optimal work mode is enabled for dimension update start and end methods.

Example

To execute the example, the HTML page must contain the DimensionTree component named dimTree (see Example of Creating the DimensionTree Component). Check if the optimal work mode is enabled for dimension update start and end methods:

if (dim.getIsStartUpdate()) {
    console.log("Mode of optimal work of refresh start and end methods is enabled");
} else {
    console.log("Mode of optimal work of refresh start and end methods is disabled");
}

As a result the console displays check result:

Mode of optimal work of refresh start and end methods is disabled

See also:

Dimension