Hello,
I'm trying to load custom components in a kendoGridCellTemplate. This works fine to display the data.
But when I try filtering the column it doesn't filter correctly. I've tried it on text, numeric and date fields.
This is my code
<kendo-grid-column
*ngIf="!column.customComponent"
[field]="column.name"
[title]="column.title"
[filter]="column.filterType"
[hidden]="column.hidden"
[width]="140"
>
<ng-template kendoGridCellTemplate let-dataItem>
<span style="display: block; padding: 8px 12px" class="whole-cell">
<uni-grid-cell [data]="dataItem" [column]="column" [config]="vm.config"></uni-grid-cell>
</span>
</ng-template>
</kendo-grid-column>
In the uni-grid-cell I display the value from dataItem[column.name].
Do you have any advice?