Telerik RadTreeView. Extends ManagedObject. Extends SeSSimulatedObject.
Behavior Pattern: TelerikRadTreeViewBehavior
Property Summary
Property
|
Description
|
Getter
|
Setter
|
Checked
|
Checked state of the selected node or a node specified by the input parameters.
|
GetChecked
|
|
ChildrenCount
|
Number of children of the selected node or a node specified by the input parameters.
|
GetChildrenCount
|
|
Expanded
|
Expanded state of the selected node or a node specified by the input parameters.
|
GetExpanded
|
|
IndexPath
|
Index path of the specified or selected tree node i.e.
|
GetIndexPath
|
|
NodeText
|
Text of the selected node or a node specified by the input parameters.
|
GetNodeText
|
|
Selected
|
Selected state of the selected node or a node specified by the input parameters
|
GetSelected
|
|
State
|
Selected state of the selected node or a node specified by the input parameters.
|
GetState
|
|
Text
|
;-combined text of all selected nodes.
|
GetText
|
|
Action Summary
Action
|
Description
|
DoClickNode
|
Clicks specific node in the tree.
|
DoCollapse
|
Collapses specific node in the tree.
|
DoExpand
|
Expands specific node in the tree.
|
DoSetCheck
|
Checks or unchecks specified element.
|
Property Detail
Checked
Checked state of the selected node or a node specified by the input parameters.
Accessors: GetChecked
ChildrenCount
Number of children of the selected node or a node specified by the input parameters.
Accessors: GetChildrenCount
Expanded
Expanded state of the selected node or a node specified by the input parameters.
Accessors: GetExpanded
IndexPath
Index path of the specified or selected tree node i.e. string in form '0;5;2;1;6', 'false' if fails
Accessors: GetIndexPath
NodeText
Text of the selected node or a node specified by the input parameters.
Accessors: GetNodeText
Selected
Selected state of the selected node or a node specified by the input parameters
Accessors: GetSelected
State
Selected state of the selected node or a node specified by the input parameters.
Accessors: GetState
Text
;-combined text of all selected nodes.
Accessors: GetText
Action Detail
DoClickNode(path, separator, pathType, xOffset, yOffset)
Clicks specific node in the tree.
Parameters:
Name
|
Type
|
Description
|
path
|
string
|
Path of the node
|
separator
|
string
|
Separator
Optional, Default: ;.
|
pathType
|
string
|
Path type. Can be one of 'name', 'id' or 'index'.
Optional, Default: name.
|
xOffset
|
number
|
X offset to click within node. Default is a center.
Optional.
|
yOffset
|
number
|
Y offset to click within node. Default is a center.
Optional.
|
Returns:
'true' if success, 'false' otherwise.
DoCollapse(path, separator, pathType)
Collapses specific node in the tree.
Parameters:
Name
|
Type
|
Description
|
path
|
string
|
Path of the node
|
separator
|
string
|
Separator
Optional, Default: ;.
|
pathType
|
string
|
Path type. Can be one of 'name', 'id' or 'index'.
Optional, Default: name.
|
Returns:
'true' if success, 'false' otherwise.
DoExpand(path, separator, pathType)
Expands specific node in the tree.
Parameters:
Name
|
Type
|
Description
|
path
|
string
|
Path of the node
|
separator
|
string
|
Separator
Optional, Default: ;.
|
pathType
|
string
|
Path type. Can be one of 'name', 'id' or 'index'.
Optional, Default: name.
|
Returns:
'true' if success, 'false' otherwise.
DoSetCheck(bcheck, path, separator, pathType)
Checks or unchecks specified element.
Parameters:
Name
|
Type
|
Description
|
bcheck
|
boolean
|
Desired check state.
|
path
|
string
|
Path of the node
|
separator
|
string
|
Separator
Optional, Default: ;.
|
pathType
|
string
|
Path type. Can be one of 'name', 'id' or 'index'.
Optional, Default: name.
|
Returns:
'true' if success, 'false' otherwise
|