Version

insert Method

Add a node to the tree at the specified location.
Syntax
ASP.NET Ajax Javascript (Specification) 
function insert( 
   node : Node,
   level : String,
   index : int
) : Node;
ASP.NET Ajax Javascript (Usage) 
var resultVar = instanceOfWebDataTree.insert(Node,String,int);

Parameters

node
The node that will be added.
level
Node location. Where 0 is the root level. Format: "0.0.1"
index
Specify index in the nodes collection.

Return Value

Returns the node that was inserted in the tree.
See Also