Hello,
I have a RadTreeView with several levels of nodes. I define a name of a node and after click on a button I need to show a node with this name. I know how select the node and expand parent nodes but I do not succeed to scroll to the selected node . I checked many examples by Google and in this forum but all they do not work. Particularly, example from Help does not work:
function ScrollNode()
{
var tree = $find("<%= RadTreeView1.ClientID %>");
var node = tree.findNodeByText("My Node");
if(node)
{
node.scrollIntoView();
}
}
So I really need a working example of this operation (preferably, in the client side).
Evgeny
I have a RadTreeView with several levels of nodes. I define a name of a node and after click on a button I need to show a node with this name. I know how select the node and expand parent nodes but I do not succeed to scroll to the selected node . I checked many examples by Google and in this forum but all they do not work. Particularly, example from Help does not work:
function ScrollNode()
{
var tree = $find("<%= RadTreeView1.ClientID %>");
var node = tree.findNodeByText("My Node");
if(node)
{
node.scrollIntoView();
}
}
So I really need a working example of this operation (preferably, in the client side).
Evgeny