EaxAnalyzer.IsChanged

Syntax

IsChanged: Boolean

Description

The IsChanged property returns whether the express report is changed.

Comments

Use JSON or the setIsChanged method to set the property value, and the getIsChanged method to get the property value. This property returns True if the express report has been changed, and False when otherwise.

This property can be used when the program checks if a request to save data should be shown before closing an express report.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Check if the express report has been changed and output an appropriate message:

var eaxAnalyzer = expressBox.getSource();
if (eaxAnalyzer.getIsChanged()) {
    console.log("Express report has been modified.");
} else {
    console.log("Express report has not been modified.");
}

After executing the example the browser console displays a message that the express report has not been changed.

See also:

EaxAnalyzer