I have my grid's GroupsChanging event handler set up so when the use right-clicks and selects "group by" on a DateTime column, the grid groups instead on a hidden column which contains only the date. This works great.
But when I right-click on select "ungroup" on the same column, the GroupsChanging event never fires! I assume that is because that column is not actually grouped by, but it's problematic. How do I ungroup on this custom, hidden column? Perhaps there is a way I can intercept the ungroup some other way (maybe even client-side)?
FYI: If I display the date-only column, and ungroup on that, it works!