Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
980
WebDataTree and UltraWebTree: 1) Load on Demand issue: nodePopulate firing before page load; 2) adding node collection
posted

Hi,

1) In UltraWebTree DemandLoad fired after Page_Load on clicking "populating symbol" of the node. However, for WebDataTree NodePopulate fires before Page_Load (I was surpised, but I used breakpoints several times to be sure), and that's inconvenient, because the order is crucial for me. Any help?

2)In Nodes of UltraWebTree AddRange method took Collection as an Argument, so it was possible to add all the nodes of the one tree to the other one correctly. Is there any way to do that for webDataTree?

Will

foreach (DataTreeNode n in firstTree.Nodes)

             secondTree.Nodes.Add(n);

give the same effect?