CaptionSummaryRow title format while grouping

Are there tokens available for the WPF grid do be replaced with the current group name and the count of items in the group. in the winforms grid they are {Category} & {RecordCount} but if I try to use them in the wpf grid it crashes the app.

GridDataSummaryRow grp = new GridDataSummaryRow()
{
Title = "{RecordCount} - {Category} Items",
TitleColumnCount = 3
};

gridControl.CaptionSummaryRow = grp;
gridControl.ShowGroupSummaryInCaption = true;

this should display "4 - Widget Items" the group Widget that contains 4 rows.




1 Reply

RV Ramesh V Syncfusion Team July 8, 2011 10:41 AM UTC

Hi,

You can achieve this by using custom summaries. And also we have prepared a sample based on this please find the sample under the following location.

Sample: http://www.syncfusion.com/uploads/redirect.aspx?&team=support&file=CustomSummary-658980781.zip

Please let us know if this helps.

Regards,
Ramesh


Loader.
Up arrow icon