EaxDataView.getTitleView

Syntax

getTitleView();

Description

The getTitleView method returns the express report title.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Then get the state of the View Mode checkbox using the express report title view:

// Get an object of the EaxDataView class
var dataView = expressBox.getDataView();
console.log(dataView.getTitleView().getViewMode());

After executing the example the browser console displays False, as the express report is opened in the view mode:

false

See also:

 EaxDataView