Rank: Member Groups: Member
Joined: 11/9/2007 Posts: 15
|
I have a Treeview in which dynamically add a subset of nodes in a specific node and operates properly, but are an option where more than 14000 records to add to the node can not expand the node to show everyone.
The question is what is the maximum number of nodes that can add or how you could do to show a node with a subset of more than 14000 nodes Thanks for your help!!! Greetings!!
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
The theoratical limit is 32768. However in reality 14000 will definitely not work. Each TreeNode consumes resource and time to load. So when the number of child nodes grows over a few hundreds, you will start to notice quite some time delays, and eventually the delay will become so big that the page is unusable.
The correct way is to break them into children of different child nodes so that no child node has a huge number of direct child nodes. The goal is even though your data set has more than 14000 records, they will never be loaded at the same time.
Thanks
|
Rank: Member Groups: Member
Joined: 11/9/2007 Posts: 15
|
thanks very much!!!!
|