I want my grid to be sorted by one column and one column only. The grid should always be sorted in the same way and not allow any other sorting. How do I go about this?
Thanks
To prevent the user from sorting the grid, try this:
First, disable all sorting by setting this property
Optionally, you may also want to make columns unselectable:
ultraGrid1.DisplayLayout.Override.SelectTypeCol = SelectType.None;
Yes. Perfect. That works.
Just the sorting programmically remains.