Hi
I'm converting some code from Kendo MVC to Kendo aspnet core, and I've found something different, this used to work in the .cshtml
@(Html.Kendo().Grid<AppointmentDateModel>()
.Name("grid")
.Columns(columns =>
{
columns.Template(c => { }).ClientTemplate("<div>#= TemplateString #</div>");
})
)
But it won't compile for Kendo asp.net core, it looks like ClientTemplate() has to be on a bound column (GridBoundColumnBuilder), rather than a template column (GridTemplateColumnBuilder).
Is there a standard way to code this, I don't have a column to bind to?
Thanks,