HI im using ASP.NET MVC and i generated a Grid by the following code the problem is that the images are not working infact the .ClientTemplate() isnt working at all is there something that im missing do i need to do something in my model ?
@(Html.Kendo().Grid(Model).Name("TeachersGrid")
.Columns(columns =>
{
columns.Bound(m => m.Title).Title(" ");
columns.Bound(m => m.First_name).Title("Име")
columns.Bound(m => m.Second_name).Title("Презиме");
columns.Bound(m => m.Family_name).Title("Фамилия");
columns.Bound(m => m.img).ClientTemplate("<img src='#=img#' />");
})
.Groupable()
.Sortable()
.Scrollable()
.Filterable()
.Reorderable(reorder => reorder.Columns(true))
.Resizable(resize => resize.Columns(true))
)