Hi !!
I'm new to infragistics
i have 2 questions on UltraTrees
1. i need to copy node[s] between two trees (including their cells) can i do it?
2. i have 2 UltraTrees that i need to perform merge on them is this possible?
tnx in advance
tnx :)
1. Recursively iterate all Nodes collections starting with the root Nodes collection (UltraTree.Nodes), And iterate the Cells collection for each node therein. For each node in the source tree, create one for the target. You can get the value of a cell using the UltraTreeNode.Cells[n].Value property, and you can set the value on the target cell using the UltraTreeNode.SetCellValue property.
2. No, UltraTree does not support cell merging as UltraGrid does.