Hi,
I've seen a sample in the SamplesExplorer and found that from the sample image, the fields in Field Chooser able to be shown according to the column order (left to right) in the grid. Any idea how to do it? I've tried many ways but the fields kept being sorted in alphabetically order. Thanks
You can try to get to the Column object in the Column Chooser by using the following code to change its Visible Position:
// Set the VisiblePosition to 0. We want the customer id column to be the first column. this.ColChooser1.DisplayLayout.Bands[0].Columns["CustomerID"].Header.VisiblePosition = 0;