NodeFixedSelected: Boolean;
The NodeFixedSelected property determines whether the specified node can be selected.
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 selection is disabled.
false. Node selection is enabled.
Executing the example requires the SimpleTreeList component with the Tree identifier (see Example of Creating the SimpleTreeList Component).
// Disable selection of the first node Tree.setNodeFixedSelected(0, true);
After executing the example selection of the first node is disabled.
See also: