TreeListBase.NodeFixedFocused

Syntax

NodeFixedFocused: Boolean;

Description

The NodeFixedFocused property determines whether the specified node can be focused.

Comments

Focus - border around the node moved with arrows of the mouse. The focused element is selected by pressing the SPACE key.

Use the setNodeFixedFocused(nodeKey, value) method to set the property value, and the getNodeFixedFocused(nodeKey) method to get the property value.

Parameters:

Available value variants:

Example

Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).

// Disable focus setting for the first node
Tree.setNodeFixedFocused(0, true);

After executing the example the first node is not focused.

See also:

TreeListBase