Remove SummaryFieldCells and SummaryEmptyCells but keep GroupCaptionSummaryCells

Hi, Is there any way I can prevent my grid from having any SummaryFieldCells and SummaryEmptyCells but keep the GroupCaptionSummaryCells in place?

Thanks,
Mitul

1 Reply

HA haneefm Syncfusion Team October 16, 2007 07:35 PM UTC

Hi Mitul,

You can do the following:

TableDescriptor td = groupingGrid.TableDescriptor;
td.ChildGroupOptions.ShowCaptionSummaryCells = true;
td.ChildGroupOptions.CaptionSummaryRow = "Totals";

Whereas "Totals" is a summary row.

See the attached example.
ShowCaptionSummaryCells_6686.zip

Let me know if you need more details.

Best regards,
Haneef

Loader.
Up arrow icon