1. Thanks for fixing the typo (shuld be documented in the Release Notes)
2. In my app The event does not get fired, I use it to add an indication about Item Counts per Group.
What's the strategy to update Group Summaries with custom data?
This is the code I currently use:
2. In my app The event does not get fired, I use it to add an indication about Item Counts per Group.
What's the strategy to update Group Summaries with custom data?
This is the code I currently use:
| void OctopusGridView_GroupSummaryEvaluate(object sender, GroupSummaryEvaluationEventArgs e) |
| { |
| string suff = String.Concat(" (", e.Group.RowCount.ToString(), ")"); |
| if(e.FormatString.EndsWith(";")) |
| { |
| e.FormatString = e.FormatString.Substring(0, e.FormatString.Length - 1); |
| } |
| if (!e.FormatString.EndsWith(suff)) |
| { |
| e.FormatString = String.Concat(e.FormatString, suff); |
| } |
| } |