vote up 0 vote down star

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

flag
doesn't sound like a good idea – JohnIdol Apr 22 at 10:49

1 Answer

vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.