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 sorting loaded nodes
posted

Hi,

I'm changing Infragistics UltraWebTree with WebDataTree (guess you heard that issue many times already, but still). By NodePopulate I implemented some kind of loadOnDemand, but I need to sort loaded nodes - it used to be done like this

 

private void uwtTargets_DemandLoad(object sender, WebTreeNodeEventArgs e)

{

...

              e.Node.Nodes.Sort(false, true);

...

}

 

But now for

protected void wdtTargets_NodePopulate(object sender, DataTreeNodeEventArgs e)

 

 

there is no such possibility provided by DataTreeNodeEventArgs.

Any hints?