I am running into an issue trying to add a percentage sign to my value in one of my columns in the kendo grid using a template, what I am using is..
template: "#if(Markup != null){ #=kendo.format('{0:p}', Markup / 100)# }#"
So if the Markup value is not null then I want it to show the percentage sign, but when I run the grid all I get returning is my column is
=kendo.format('{0:p}', Markup / 100)
In this case, I like to use template as a function:
Simple example: template as a function
Or you can use it your way:
Dojo: inline template
NOTE: