Ribbon.getCustomControlsContainer

Syntax

getCustomControlsContainer();

Description

The getCustomControlsContainer method returns the container for custom controls.

Comments

Returned value - DOM node of container.

Example

To execute the example, the page must contain the Ribbon component named "ribbon" (see Example of Positioning the Ribbon Component from JSON). The example is executed in the browser console. Get a container for custom items:

// get a container for custom items
console.log(ribbon.getCustomControlsContainer);

As a result, the console displays the container for custom items:

<div class="PPCustomControlsContainer"></div>

See also:

Ribbon