Represents the group-header template of the synthetic group column that is rendered when the Grid group displayMode is singleColumn or multipleColumns. It allows customization of the group header content.
To define the group header template, nest an <ng-template> tag with the kendoGridGroupColumnGroupHeaderTemplate
directive inside the <kendo-grid>.
The template context is set to the current data item and provides the following fields:
group—The current group item.field—The name of the field used for grouping.value—The current group value.aggregates—Aggregate values for the current group.
Definition
Package:@progress/kendo-angular-grid
Selector:[kendoGridGroupColumnGroupHeaderTemplate]
Syntax:
html
<kendo-grid>
<ng-template kendoGridGroupColumnGroupHeaderTemplate let-field="field" let-value="value">
<span title="Group Column Group Header Template">
<strong>{{field}}: {{ value }}</strong>
</span>
</ng-template>
</kendo-grid>