EaxCategoryView.ControlsCreated

Syntax

ControlsCreated: function(sender, args);

Parameters

sender. Event source.

args. Event information.

Description

The ControlsCreated event occurs after creating controls of tab of express report tool ribbon.

Example

Executing the example requires that the HTML page contains the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). Add a handler for the event of creating controls of the View tool ribbon tab:

// Get view of the View tab
var category = expressBox.getRibbonView().getViewCategory();
// Add a create control event handler
category.ControlsCreated.add(function(sender, args) {
    console.log("Controls of the View tab are created");
});

After clicking the View tab the console displays a message about loading of controls:

Controls of the View tab are created

See also:

EaxCategoryView