DimComboView.ComboClosed

Syntax

ComboClosed: function (sender, args)

Parameters

sender. Event source.

args. Event information.

Description

The ComboClosed event occurs on closing the drop-down part of the component.

Example

To execute the example, place the DimensionCombo component named dimCombo. Add a handler for the ComboClosed event:

dimCombo.ComboClosed.add(function (sender, args) {dimCombo.getControl().setContent(dimCombo.getControl().getCaptionStringNothing())})

 

After selecting elements and closing the drop-down panel, the text box shows the string that is displayed with the closed panel if there are no selected elements.

See also:

DimComboView