Hello;
I'm having trouble getting my grid, with group by functionality set, to show a Grand Total summary for the whole grid, but not a separate summary row for each set of grouped rows, because I'm already showing summaries for each set of grouped rows in it's groupBy row.
This property,
e.Layout.Override.SummaryDisplayArea |= SummaryDisplayAreas.GroupByRowsFooter;
Seems to be necessary to get that whole-grid grand total, but ut also adds summary rows for each set of grouped rows.
Thanks for any help...
Bill
Bill,
I'm not sure what you're "ORing" into the SummaryDisplayArea, since this is generally Default; you're effectively just setting this to GroupByRowsFooter. The following worked for me in that it only showed the summaries at the bottom of all the GroupByRows:
e.Layout.Override.SummaryDisplayArea = SummaryDisplayAreas.Bottom | SummaryDisplayAreas.HideDataRowFooters | SummaryDisplayAreas.GroupByRowsFooter;
-Matt
Beautiful.. Thank you Matt. I was unaware of the HideDataRowFooters member of the enum, which I since found documented. Also, I've found the Feature Picker in the grid designer which serves not only as a tool to cusomize the grid but if you're in my postion, beginning and clueless, documentation for what the grid can do.