Hi,
I'm using kendo grid in angular. I'm trying to hide/remove the total cell from the kendo grid using *ngIf, but only content inside the cell is hiding, empty cell is showing.
How to hide the total cell from the grid,
This is the code , I have used
<kendo-grid id="antibiotic-result-view" [data]="uniqAntibioticList" [resizable]="false">
<kendo-grid-column field="Expansion" [width]="150">
<ng-template kendoGridHeaderTemplate let-column let-columnIndex="columnIndex">
<div class="antibiotic-heading">{{"Antibiotic" | translate}}
<mat-checkbox type="checkbox" [ngModel]="allCompleted" disabled="true"></mat-checkbox>
</div>
</ng-template>
<ng-template kendoGridCellTemplate let-dataItem let-rowIndex="rowIndex">
<div *ngIf="dataItem.IsSuppressed">
<span>{{ dataItem.Expansion }}</span>
<mat-checkbox type="checkbox" [ngModel]="dataItem.IsSuppressed" disabled="true"></mat-checkbox>
</div>
</ng-template>
</kendo-grid-column>
</kendo-grid>
I have been trying for past 2 days, could someone help me on this ?