Hi,
I have a grid that is grouped by multiple columns. I've added a footer template via kendoGridGroupFooterTemplate, which causes one row for each grouping to appear. How can I just show a single footer row even when the grid is grouped by multiple columns?
Here's a simplified example with two columns that are both grouped: https://stackblitz.com/edit/angular-9f2v8c-wccblx?file=app/app.component.ts
You can see that there are two footer rows. One shows "Count:" (this is generated from the ProductID grouping) and the other "Count: 1" (this is generated from the ProductName grouping). I only want the footer row for the ProductName grouping to appear. How can I achieve this?
Thanks
Jim