Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
Tree View for MyMatters
j00h
I'm building a new document profile form in C# and VSTO using the Worksite 8.2 SDK. On the form I have a TreeView that is populated on the load event of the form. I haven't had a chance to test it fully on our live system, but I'm assuming that the rendering of the TreeView may be quite slow on a large database. We have 800 users and total of 3.5 million documents
Had anyone done anything like this before and can maybe give me some pointers as to the most efficient way of doing this. I was thinking that I could only render the top level when the form loads and then wait until the user expands each node to render the next level and so on.
If anyone has any pointers then it would be appreciated. Thanks.
Find more posts tagged with
Comments
Migrateduser
Is is a Web app or Desktop app? What you want to do is make the leaf /child nodes late bound so you don't load everything upfront
Thanks
Sheetal
sheetal@docstree.com
www.docstree.com
guido1
Yes - and each time a node in the treeview is expanded I'd also consider rendering the node contents in a separate thread. It's worked quite well for us