.RadTreeView_Xerox .rtLines .rtFirst .rtUL
{
padding-left:2px;
margin-left:2px;
}
.RadTreeView_Xerox .rtLines .rtLast .rtUL
{
padding-left:2px;
margin-left:2px;
}
appears to reduce the indent on the first and last nodes. I am however unsure how to reduce the indent on all the nodes in between. How would I do this? Should I be applying these styles to a different class. (Note: my skin is based on the 'Default' TreeView Skin)
Kind Regards
What I am trying to do is using code behind add a root1 called "All Providers" then databind another datatable to make them childs of root1.
Code snippet:
RadTreeNode root1 = new RadTreeNode("All Providers");
RadTreeView1.Nodes.Add(root1);
RadTreeView1.AppendDataBoundItems =
true;
RadTreeView1.DataBind();
But what happens they al become roots in thier own right and do not appear as childs to root1. I know there must be a way but cant find out how with the help file.
Thanks for any help.