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?
Will
foreach (DataTreeNode n in firstTree.Nodes)
secondTree.Nodes.Add(n);
give the same effect?
Hi again,
sorry to trouble, but I have one more small issue - about adding the collection of nodes. 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?
And I have one more big issue... http://ko.infragistics.com/community/forums/p/73735/373027.aspx#373027 . No one answers there, and you answered here REALLY quickly, so perhaps you'll be able to help... The main issue there I wrote in the first post, the rest is more or less fixable.
Never mind, I just wasn't careful with assembly registration. Sorry.
In fact, I have one... In whichg thread shout I post question/look for the solution for the following issue:
Parser Error Message: The base class includes the field 'wtTabs', but its type (Infragistics.Web.UI.LayoutControls.WebTab) is not compatible with the type of control (Infragistics.Web.UI.LayoutControls.WebTab).
And I get it with all the new controls. Right now I'm on version-free dlls, from 12.1 release. Perhaps it might be connected with <runtime> section of web.config? But as far as I understood from links given here http://ko.infragistics.com/community/blogs/taz_abdeali/archive/2011/11/17/asp-net-product-changes-in-2011-volume-2.aspx, (and archives with Upgrade Guide), there only classic dlls should be mentioned.
Thank you very much!
Hello Andrey,
I'm glad you solved your issues. Let me know if you have any other questions.