I have a simple application where I am displaying the tree list in a dialog box for the users to pick and have a little servlet in background for lazy loading. The problem happens for me when I click on one of the directories. This directory contains 4000+ other directories. The scroll bar becomes very hard to scroll down, slowing down measurably.

I have a solution to group things on the screen so that the users see the first couple characters of the directories and then slowly let them drill down. I was wondering if there is a simpler solution to this other than this thing I have in mind.

link|improve this question

Do the users know which directory they are looking for? Maybe allow for some kind of filtering (either by exclusion or inclusion) of the directories listed. – Cory Jan 24 at 21:04
Yes they do. I am implementing a little firstElement .. lastElement when displaying. The directories are basically numbers and I am sorting them. – Ender Wiggin Jan 24 at 23:15
feedback

1 Answer

up vote 0 down vote accepted

The solution I have done is actually similiar to this. I have created a pseudo hirearchy where none existed before. See this answer for an other question. How to render a large tree

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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