hi, I would like to know how it is possible to insert a template for the single column.
I would like to apply a template to the cell for example to print a text and not the value of the field
Something like this:
<kendo-grid-excel fileName="{{fileName}}" [fetchData]="_allData"> <ng-container *ngFor="let item of _excelColumns"> <kendo-excelexport-column [field]="item.field" [title]="item.title" [hidden]="item.hidden" [cellOptions]="item.cellOptions" [width]="item.width"> <ng-template let-dataItem> Hello world </ng-template> </kendo-excelexport-column> </ng-container> </kendo-grid-excel>
hello world not displayed
Great regards,
Alex