ControlsCreated: function(sender, args);
sender. Event source.
args. Event information.
The ControlsCreated event occurs after creating controls of tab of express report tool ribbon.
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: