Hi,
Am using Infragistics.Win.UltraTree control in my application. Am assigning dataset as data source to ultratree. So each datatable in a given dataset is represented as a parent node by ultratree. But parent nodes of ultratree was sorted by some order. Is there a way to reorder the parent nodes of a ultratree.
Example:
dataset.tables.add(table3);
dataset.tables.add(table2);
dataset.tables.add(table1);
ultratree display should be,
The first node is table3,second node is table2, third node is table1.
I need the nodes should be in the same order as tables are added in the dataset.
Hi Boris,
Thank you. It's worked.