Hi!
How do you sort the columns alphabetically in the window that is opened when calling the method ShowColumnChooser on the grid?
The columns in the ColumnChooser are sorted alphbetically by default. If your columns are not showing up alphabetically, then you must be explicitly changing the order.
The way you would change the order is like so:
private void ultraGrid1_BeforeColumnChooserDisplayed(object sender, BeforeColumnChooserDisplayedEventArgs e) { e.Dialog.ColumnChooserControl.ColumnDisplayOrder = ColumnDisplayOrder.SameAsGrid; }
I'm using infragistics ver. 6.2 and in that version there is no property called ColumnDisplayOrder. How do I solve the problem with that version?
Regard, Emelia