Hi,
I want to loop through all of the trees nodes, selecting a specific node, and then expand all parent nodes.
Ive been trying to use this code to do this.
Apparently this will only loop through the root nodes, witch i only have one of, please help me.
foreach (RadTreeNode NodeToExpand in rtvMenu.Nodes)
{
if(Convert.ToInt32(NodeToExpand.Value) == OptionalMenuId)
{
NodeToExpand.ExpandParentNodes();
}
}
//DG