EaxDataView.refreshAll

Syntax

refreshAll();

Description

The refreshAll method refreshes all contents of the express report working area.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Then refresh the express report title:

// Get container view for working area of the express report
var dataView = expressBox.getDataView();
// Set handler for the Rendered event
dataView.Rendered.add(function(){
    alert("Prepared for viewing")
});
// Refresh all the contents of container in the express report working area
dataView.refreshAll();

After executing the example all contents in working area of the express report are refreshed, after that a message box with the text "Prepared for viewing" appears.

See also:

 EaxDataView