I want to sort 4 columns in the UltraWebGrid programmatically. First column 8 and then 1, 2, and 4. Here is the code for sorting I use:
UltraWebGrid.Bands[0].Columns[8].SortIndicator = Infragistics.WebUI.UltraWebGrid.SortIndicator.Ascending;
Danyeung