DimTree.selectGroupItems

Syntax

selectGroupItems(idGroup: String);

Parameters

idGroup. Identifier of dimension element group.

Description

The selectGroupItems method selects group items.

Comments

To execute the example, the HTML page must contain the DimCombo component named dimCombo (see Example of the DimCombo Component Layout). It is also required to have a dimension element group with the OBJ10901 identifier. Select elements of the OBJ10901 group:

// Get tree view
tree = dimCombo.getTreeView();
// Select dimension elements of the "OBJ10901" group
tree.selectGroupItems("OBJ10901");

As a result the dimension elements of the OBJ10901 group are selected:

See also:

DimTree