I am using Telerik RadTreeView and I am adding Nodes programatically with the following code
subnode.NavigateUrl = "javascript:selectedNode('" + subnode.Text + "','" + "content" + "','" + myDataReader2["moduleId"] + "')";
RadTreeView1.Nodes.Add(subnode);
Thus when i am clicking the node then the javascript function selectedNode is executed. But when I am changing the selected node programmatically by using a button for ex:
node.Focus();
node.Selected = true;
The javascript is not executed. Is there any way to execute its navigateurl property programmatically?.