Hi,
I am trying to sort groupby Rows base on the grid row index. The sorting that is shown on Picture1 is exactly what I want. It can be done using IComparator by comparing the row index. However, once I add another sorted column under that group, the sort has changed. Here are my questions:
1. Is there a way I can fix the GroupbyRow order (in my case, PIcture 1 attachment as is) no matter how I change the rest of the grouping?
2. Is there a way I can GroupBy base on the row index?
I do not know if I am asking the right questions but I just want my "Scenario" column to have specific GroupBy order. I do not want to see any other grouping interrupting that order. Any idea?
Thanks!
I have a grid and I need to detect if a group by column has been changed, i.e an already grouped by column dragged from header into the grid, what event should I be trapping. Initializegroup by or Filter by seems not working.
Regards
Grouping is tightly tied to sorting. The event you want is BeforeSortChange or AfterSortChange.
Perfect, this is what I was after. Thx for this.