AdvAnalyticsCatView.refreshAll

Syntax

refreshAll();

Description

The refreshAll method refreshes tab.

Comments

The method is identical to the refresh method.

Example

To execute this example, the HTML page must contain the ReportBox component named reportBox (see Example of the ReportBox Component Layout). Open the Advanced Analytics tab in the report and enter the following code in the console:

// Get tool ribbon
ribbon = reportBox.getRibbonView();
// Get the Advanced Analytics tab
analyticCat = ribbon.getAnalyticsCategory();
// Refresh tab
analyticCat.refreshAll();

After executing the example the tab is refreshed.

See also:

AdvAnalyticsCatView