TreeNodeBase<T>
TreeNodeBase<
T> =object
The TreeNode is a wrapper that describes the relationship of this node to other nodes in the tree. TreeNode properties describe the metadata - state and position of the node. The item property represents the action tree item data.
Type Parameters
T
T
Properties
isDisabled?
optionalisDisabled:boolean
Whether node has interactive capability *
isExpanded?
optionalisExpanded:boolean
Whether node children are rendered *
isSelected?
optionalisSelected:boolean
Node selection marker *
isVisible?
optionalisVisible:boolean
Whether node visibility is marked on or off *
isVisibleComputed?
optionalisVisibleComputed:boolean
Computed actual visibility based on ancestors and self visibility *
key
key:
Key
A unique key for the tree node.
label
label:
string
Label string *
values?
optionalvalues:T
Application specific values in node *