hi,
i have a snippet codes:
https://codesandbox.io/p/sandbox/adoring-galois-4cpxxm?file=%2Fsrc%2Fapp%2Fapp.component.ts%3A29%2C1
what i want is
if the product name is "Chai", i want to give the "TD" cell a speical css class name.
<kendo-grid-column field="ProductName">
<ng-template
kendoGridHeaderTemplate
let-column
let-columnIndex="columnIndex"
>
{{ column.field }}({{ columnIndex }})
</ng-template>
<ng-template
kendoGridCellTemplate
let-dataItem
let-field
let-rowIndex="rowIndex"
>
<span>{{ field["ProductName"] }}</span>
</ng-template>
</kendo-grid-column>
i can get the product name by the above codes, but i dont know how to set the "TD" class name . the TD is the parent element of the span .
can you please tell me how to do this?