Hi,
I am facing issue with the UltraWinTree Control.
I am using Binding List concept to load the UltraWinTree.
I have two columns in the UltraWinTree (for example ‘Column A’, ‘Column ‘B’) and order of the column is the same Column A- Column B.
If I set ViewStyle property to Standard, it is showing first column only i.e. ‘Column A’. But I want ‘Column B’ to be visible instead of ‘Column A’ irrespective of order of Columns in the UltraWinTree.
How can I achieve this?
Thanks in advance.
Kumar
Handle the ColumnSetGenerated event, and set the e.ColumnSet.NodeTextColumn property to reference e.ColumnSet.Columns["B"]. By default, it will use the column at the first ordinal position in the collection, but you can override that by setting NodeTextColumn explicitly.