Hi I would like to know how do I call a function inside the kendo cloumn template?
I would like this function to take the cell value and return a result.
Something like this:
<kendo-grid-column field="Name" [style]="{'text-align': 'right'}"> <ng-template kendoGridCellTemplate let-value="value"> <span>{{ myFunction(value) }}</span> </ng-template></kendo-grid-column>public myFunction(n){ if(n>0){ return "ok"; }else{ return "do check"; }}
The function is not called in this case.
thanks,
regards
