ExpressView.getDataView

Syntax

getDataView();

Description

The getDataView method returns view of the express report data area.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Get view of the express report data area and allow dragging the area with the mouse:

// Get express report data area view
var dataView = expressBox.getDataView();
// Allow moving of express report data area
dataView.setDraggable(true);

After executing the example the express report data area moves to a position specified by the user:

ExpressView.getDataView

See also:

ExpressView