how do i apply a template to a grid cell when i export it to excel?
something like this:
<kendo-grid-excel [fetchData]="allData"> <ng-container *ngFor="let item of array"> <kendo-excelexport-column [field]="item.field"> <ng-template let-value="value"> <span>EXAMPLE: {{value}}</span> </ng-template> </kendo-excelexport-column> </ng-container> </kendo-grid-excel>regards,
alex