Here is my demo,
What I want is put a check box and a text together. In the demo link,
it is
But I don't want to hard code string Select row
. I want to replace it with the field. For example, Product Name. So the expected result is Chai then checkbox
Find a solution, using dataItem
Here is the trick.
<ng-template kendoGridCellTemplate let-dataItem>
{{dataItem.ProductName}} <input [kendoGridSelectionCheckbox]="idx" />
</ng-template>