I just upgraded to version 3.14.7 and notice a difference in functionality in the datagrid and grouping and I was hoping there's a way to get the old functionality back?
Beforehand I was on a version 3.12.x and I was using a sorted dataset that had an explicit sort/display order and then a group per item - for example.
Item A | Order: 1 | Group "Z"
Item B | Order: 2 | Group "F"
Item C | Order: 3 | Group "A"
Item D | Order: 4 | Group "A"
Item E | Order: 5 | Group "D"
Which used to give me the data neatly grouped in their defined order, with the groups in the expected order of: Z,F,A,D and then their respective items under them.
After the update to 3.14.7 suddenly my groups are alphabetically sorted into "A,D,F,Z" which is not what I need. Is there a way to turn off the sorting of the groups? Already set 'sortable' etc to false
When creating the grouping in code, I also tried " args.Grid.Groups.Add(new GroupDescriptor() { Property = "Group", Title = "GroupName", SortOrder = null });"
But this seemed to have no effect.
I would hate to have to modify my group names to prefix them with "1. Z ", "2. F" , "3. A " etc just to get around this issue .
Thank you!