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?
Yes. Handle the BeforeColumnChooserDisplayed event and inside:
e.Dialog.ColumnChooserControl.ColumnDisplayOrder = ColumnDisplayOrder.SameAsGrid;
Thank you!