Hi, I'd like to disable drag and drop reordering of columns in a RadGridView. I set CanUserSortColumns to false, but this doesn't seem to make a difference. I setup the grid like so:
What do I need to do to disable this feature?
public static void SetupGrid(RadGridView gc){ gc.IsFilteringAllowed = false; gc.CanUserSortColumns = false; gc.CanUserSortGroups = false; gc.CanUserReorderColumns = false; gc.CanUserDeleteRows = false; gc.CanUserInsertRows = false; gc.ShowGroupPanel = false; gc.ShowInsertRow = false;}What do I need to do to disable this feature?