EaxGridView.isLoaded

Syntax

isLoaded();

Description

The isLoaded method indicates that the table in the express report working area is loaded.

Comments

If the table is loaded to the working area of the express report, the method returns True, otherwise it returns False.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Get view mode value:

// Get table view
var gridView = expressBox.getDataView().getGridView();
// Output view mode value
console.log("Is loaded: " + gridView .isLoaded());

After executing the example the following text is output to the console:

Is loaded: true

See also:

EaxGridView