Hey Guys,
I'm fairly new to Infragistics and could not find anything on Google with an example code on how to expand all or collapse all nodes of a webdatatree (didn't even find a way to expand a single node).
Any help is much appreciated! :)
Thanks!
Wagner
Now I realize I posted this in the wrong forum (this is the WebTree, my problem is with the WebDataTree).
Regardless, I did find a possible solution (to be tested yet), something like this:
foreach (DataTreeNode node in CategoriesTree.AllNodes)
{
node.CollapseChildren(); // or ExpandChildren()
}
Wagner Danda da Silva