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
390
Reorder the parent nodes in ultratree
posted

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.