AdvAnalyticsCatView.ControlsCreated

Syntax

ControlsCreated: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The ControlsCreated event occurs on creating of controls.

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();
// Add event
analyticCat.ControlsCreated.add(function(sender, args){
  console.log(args);
});

After executing the example the event is added.

See also:

AdvAnalyticsCatView