I have a treeview defined like this:
I want to populate the tree with multiple root nodes, so I'm trying this way:
But everything is aligning to the right like this (Please see attachment radtreeview.jpg).
I need all root nodes to align to the left with as little "whitespace" as possible. There is no whitespace in the data.
Thanks,
Rob
<telerik:RadTreeView ID="tvHierarchy" runat="server" CheckBoxes="True" LoadingStatusPosition="BeforeNodeText" OnClientNodeChecked="tv_Check" OnClientNodeClicking="tv_Clk"> <CollapseAnimation Duration="100" Type="None" /> <ExpandAnimation Duration="100" /> </telerik:RadTreeView>I want to populate the tree with multiple root nodes, so I'm trying this way:
For Each rootNode As dbo_BASE_NODE In rootNodes Dim node As New RadTreeNode() node.Text = rootNode.BN_ID & " " & rootNode.BN_NAME node.Value = rootNode.HN_RID tvHierarchy.Nodes.Add(node) NextBut everything is aligning to the right like this (Please see attachment radtreeview.jpg).
I need all root nodes to align to the left with as little "whitespace" as possible. There is no whitespace in the data.
Thanks,
Rob