Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
110
WebDataTree- Find a specific Node
posted

Hi,

 

I am upgrading from UltraWebTree to WebDataTree.

In UltraWebTree, has Find method to find node with specific Tag as shown below

 

Node

 

parentNode = treeMap.Find(menuItem.ParentId);

 

Where menuItem.ParentID is set as Tag property of the Node.

 as shown:

Node newNode = new Node();

 newNode.Text = menuItem.MenuText;

 newNode.Tag = menuItem.MenuId;

 

But in WedDataTree, I am not able to see Find method so I was using FindNodeByValue. But this method returns only root level node collection. I am binding tree with an object in code behind. I am able to populate root node but not able to add child node at specific location. Please let me know what is replacement of Find method in WebDataTree.

 

Please help its very urgent

 

Amar