NodeFixedFocused: Boolean;
The NodeFixedFocused property determines whether the specified node can be focused.
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:
nodeKey. String. Node identifier.
value. Boolean. Value.
Available value variants:
true. Node focus is disabled.
false. Node focus is enabled.
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: