DictionaryTree.ShowHidden

Syntax

ShowHidden: Boolean;

Description

The ShowHidden property determines display mode for hidden elements.

Comments

Use JSON or the setShowHidden method to set the property value, and the getShowHidden method to get the property value.

If this property is set to true hidden elements are shown, otherwise they are not.

Example

To execute this example, the page must contain the DictionaryBox component named dictionaryBox (see Example of creating the DictionaryBox component ). Get dictionary elements tree and show hidden elements:

// Get dictionary data area
var area = dictionaryBox.getDataArea();
// Get the tree of dictionary elements
var tree = area.getActiveDictTree();
// Show hidden elements
tree.setShowHidden(true);

After executing the example the hidden element Hour is shown in the MDM dictionary.

See also:

DictionaryTree