Hello,
when groping I want to display the number of items in the given group. I have done the following:
<GridGroupSettings>
<CaptionTemplate>
@{
var order = (context as CaptionTemplateContext);
<div>@order.Key - @order.Count items</div>
}
</CaptionTemplate>
</GridGroupSettings>
This used to work but it seems newer versions of syncfusion have changed something and now order.Count returns 0 when the group contains some items