Rank: Member Groups: Member
Joined: 9/28/2007 Posts: 20
|
My parent nodes are going to be more than 2000 nodes and for each parent node I will have a maximum of one level of child for each parent node, but the number of child nodes are going to be more than 4000. Can this TreeView control be able to support these many no of nodes without any performance issue ? We have only one level of child node. If you think there might be some performance issue, could u please recommand any solution.
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi Venkat,
You won't be able to do that. No Web based TreeView control has sibling 2000 nodes under a single parent node, theoretically it's possible, but in reality it will not only put unnecessary stress on your server, takes much longer to load, consumes much more resource on the client side, but also makes it impossible for your user to use because your users will have to scroll extensively to find the node they intend to select, so in the end it's a lose on all sides, and it would be a stupid design both from architecture and usability point of view. As such the recommended solution is to avoid it, re-organize your tree view into a more structural way.
Thanks
|