Partial View in kendo grid column
问题 I have an ajax enabled kendo grid with a client template that displays data from the model to which the row is bound. (because of ajax, using columns.Template seems not possible.) @(Html.Kendo().Grid<Model>() .Columns(columns => { columns.Bound(x => x.SubModel).ClientTemplate("bla #= SomePropertyOfSubModel # bla") }) .DataSource(dataSource => dataSource.Ajax()) This works basically, but I am not satisfied with the result. For ex., I have problems to make kendo controls in the template work. I