hi,
I want to make the node selected after adding nodes from a popup.
I am using the folowing code in Ajax_Request after closing the popup.
I want to make the node selected after adding nodes from a popup.
I am using the folowing code in Ajax_Request after closing the popup.
RadTreeNode currentNode = new RadTreeNode();
currentNode = rtHierarchy.FindNodeByText(hdnNode.Value);
currentNode.Selected=true;
In the code snippet, hdnNode.Value is a hidden field, which holds the text of the node from which the node has been added.
The problem i am facing is after closing the popup the added nodes are not displayed. The nodes are displayed only after when i click on some other node.