views:

862

answers:

2

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

A: 

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>
Eoin Campbell