This question is locked. New answers and comments are not allowed.
Telerik,
In the 2010.1 Helpfile for Grid\Columns using grid clientside templates is discussed as:
In the 2010.1 Helpfile for Grid\Columns using grid clientside templates is discussed as:
.Columns(columns =>
{
columns.Add(c => c.CustomerID).ClientTemplate(
"<strong><%#= ClientID #></strong>"
)
But in the demo and afaik to get it working the template needs to be (without the percent):
columns.Add(c => c.CustomerID).ClientTemplate("<strong><#= ClientID #></strong>")