On 7/11/05, Surya Prakash <[EMAIL PROTECTED]> wrote: > > I am using Tacos Tree, it is working fine, but some times, the numbers > of items returned are so many and it is taking a long time to render. > Is there any way to provide pagination, so that only a fixed number of > items are returned?
How large a tree are we talking about? How would the pagination look like? Here are two ideas that you can relatively easily implement in your app to alleviate the problem: - if a folder contains too many items, try introducing another level of automatic grouping folders. For example based on the number of items make up virtual folder for letter A-K, L-Z.. All this can be done in your ContentProvider implementation. - Another one would be a drill-down capability... render an extra button on tree folders, that allows users to make that folder the root of the tree. regards, Viktor --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
