Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
130
Indentation problem with WebTree
posted

I have an ultrawebtree on my asp page.  I'm having a problem where my indentations aren't holding past level 2.  I have my tree being populated at runtime then they are loaded on demand.  When I create the new nodes and add them to the tree the indentation goes away completely resulting in a straight line.  This makes the tree really hard to read.  Does anyone have any ideas on this?  Any help would be much appreciated.

 <ignav:UltraWebTree id="UltraWebTree1" runat="server" Height="100%" Font-Names="Tahoma" Font-Size="10pt"Cursor="Default" BorderStyle="Solid" BorderWidth="1px" WebTreeTarget="ClassicTree" CollapseImage="ig_treeMinus.gif" LoadOnDemand="ManualSmartCallbacks" CompactRendering="False" OnDemandLoad="UltraWebTree1_DemandLoad" ExpandImage="ig_treePlus.gif" ImageDirectory="./images/" BorderColor="#CCCCCC" Indentation="20" DefaultImage="folder.gif" LeafNodeImageUrl="file.gif" ParentNodeImageUrl="folder.gif" Width ="235px">
<SelectedNodeStyle ForeColor="Black" BackColor="#CCCCCC"></SelectedNodeStyle>
<NodeMargins Left="20px" Right="20px" />
<Levels>
<ignav:Level Index="0" LevelCheckBoxes="False"></ignav:Level>
<ignav:Level Index="1" LevelCheckBoxes="False"></ignav:Level>
<ignav:Level Index="2" LevelCheckBoxes="False"></ignav:Level>
</Levels>
<ClientSideEvents DragStart="UltraWebTree1_DragStart" Drop="UltraWebTree1_Drop">
</
ClientSideEvents>
<NodePaddings Bottom="2px" Left="2px" Top="2px" Right="2px"></NodePaddings>
<Padding Top="6px"></Padding>
</ignav:UltraWebTree>