get_childListElement | none | HTML Element | Returns the UL HTML element which contains the HTML elements of the root Nodes. Null if there are no root Nodes. |
get_allowNodeEditing | none | Boolean | True if the AllowNodeEditing property is enabled, false otherwise. |
set_allowNodeEditing | Boolean | none | Enables/Disables Node-editing. |
get_enableDragAndDrop | none | Boolean | True if the EnableDragAndDrop property is enabled, false otherwise. |
set_enableDragAndDrop | Boolean | none | Enables/Disables drag and drop. |
get_enableDragAndDropBetweenNodes | none | Boolean | True if the EnableDragAndDropBetweenNodes property is enabled, false otherwise. |
set_enableDragAndDropBetweenNodes | Boolean | none | Enables/Disables the drag and drop between Nodes. |
get_persistLoadOnDemandNodes | none | Boolean | True if the PersistLoadOnDemandNodes property is enabled, false otherwise. |
set_persistLoadOnDemandNodes | Boolean | none | Enables/Disables the persistence (at the server-side) of Nodes added on demand. |
get_checkedNodes | none | Array | Returns an array of the checked nodes when CheckBoxes="True" |
get_draggingClueElement | none | DIV | Returns the div element of the dragged node (during OnClientNodeDragging event handler) |
set_singleExpandPath | Boolean | none | Allows only a single node to be expanded when set to true. On expanding a second node, the first one returns to its initial state(that is collapsed). |
get_singleExpandPath | none | Boolean | Returns true if the singleExpandPath property is enabled, false otherwise. |
addNodesTo | RadTreeNode, Array of RadTreeNode objects | none | Adds child Nodes to the Nodes collection of a Node (defined as first parameter) |
checkAllNodes | none | none | Checks all Nodes at all levels of the tree |
uncheckAllNodes | none | none | Un-checks all Nodes at all levels of the tree |
checkNodes | Array of RadTreeNode objects or RadTreeNodeCollection | none | Checks the defined in the parameter Nodes |
uncheckNodes | Array of RadTreeNode objects or RadTreeNodeCollection | none | Un-checks the defined in the parameter Nodes |
selectAllNodes | none | none | Selects all Nodes at all levels of the tree |
selectNodes | Array of RadTreeNode objects or RadTreeNodeCollection | none | Selects the defined in the parameter Nodes |
unselectNodes | Array of RadTreeNode objects or RadTreeNodeCollection | none | Un-selects the defined in the parameter Nodes |
bulkUpdateWith | function | none | Bulks update operations over the current TreeView instance, executed in the passed function. bulkUpdateWith is one of the many performance optimizations made on RadTreeView and basically allows the users to perform multiple changes in the TreeView instance (add/remove/expand/collapse/select/unselect/check/uncheck nodes and so on) as a single update over the inner state representation. |