GxTitle.getDropPanel

Syntax

getDropPanel();

Description

The getDropPanel method returns the title drop-down panel.

Comments

Returned value - element of the PP.Ui.DropPanel class.

Example

To execute the example, the HTML page must contain the ExpressBox component named expressBox (see Example of Creating the ExpressBox Component). To show the title, click the Title button on the Home tab. Display a drop-down panel:

// Get title
var title = expressBox.getDataView().getTitleView();
// Display a drop-down panel
title.getDropPanel().show(500, 200);

As a result a drop-down panel is displayed:

See also:

GxTitle