When using the UltraGrid's built-in column chooser, is it possible to have it list the fields in the order they appear on the grid rather than alphabetically?
Thank you!
Yes. Handle the BeforeColumnChooserDisplayed event and inside:
e.Dialog.ColumnChooserControl.ColumnDisplayOrder = ColumnDisplayOrder.SameAsGrid;