up vote 1 down vote favorite
share [g+] share [fb]

I have a hierarchial data ( like Geography --> Area-> Country -> State ) which need to be shown in a Treeview. This was done but the problem is it is occupying toooo much space on the web page.

So i thought of using a drop down that would hold a treeview ??? Got few samples from CodeProject with No success.

Any pointers or any other suggestion to solve my issue would be much appreciated :)

Thank you :P

link|improve this question
doesn't sound like a good idea – JohnIdol Apr 22 '09 at 10:49
feedback

3 Answers

You could place it inside a <div> with the style option set to scroll if it overflows

<div style="height: 200px; width: 300px; overflow: auto;"> 
  //Treeview
</div>
link|improve this answer
feedback

Try to make use of dropdownExtendar in ajax toolkit controls.

Here is an example...

<asp:UpdatePanel ID="upArea" runat="server">
 <ContentTemplate>
      <asp:TextBox ID="txtArea" runat="server" Width="100%" />
      <asp:DropDownExtender ID="txtArea_DropDownExtender" runat="server"  
        Enabled="True" TargetControlID="txtArea" DropDownControlID="CourseTreeView">
      </asp:DropDownExtender>
      <asp:TreeView ID="CourseTreeView" runat="server"

OnSelectedNodeChanged="CourseTreeView_SelectedNodeChanged" ShowLines="true" DataSourceID="xdsArea" PopulateNodesFromClient="false" BackColor="#99CCFF" Width="232px">

link|improve this answer
feedback

Your Answer

 
or
required, but never shown