I have a data source with groups already configured. I don't want to the grouping bar at the top of the grid or to allow the user to change the group settings in any way, but I want to use the ShowFooter option to always show the group footers...
I am using the MVC wrappers .
.Groupable(g => g.ShowFooter(true).Enabled(true)) //always shows footers but has the grouping bar and user can x out groups even if that column was set to be not groupable
.Groupable(g => g.ShowFooter(true).Enabled(false)) // ShowFooter no longer worksis there a way to keep grouping out of the users' hands but have ShowFooter still work?