hide() {
this.grid.aggregateModule.footerRenderer.contentTable.closest('.e-gridfooter').style.display = "none";
}
show() {
this.grid.aggregateModule.footerRenderer.contentTable.closest('.e-gridfooter').style.display = "block";
} |
Hi,
Is there a way to do exactly the same for this but for group footer aggregates?
Thanks,
Gary
Hi Gary,
We understand that you like to hide the Group footer aggregates in the Grid, you can achieve your requirements by using the external CSS. Please refer the below code example and sample for more information.
Index.html
<Style> .e-grid .e-summaryrow{ display: none; } </style> |
Sample: https://stackblitz.com/edit/angular-cmzsq4?file=index.html
Regards,
Rajapandi R