我尝试使用Kendo UI将图像放入网格。我在使用columns.Bound(c => c.ProductPhotoID)
时出现问题,当我评论columns.Bound(c => c.ProductPhotoID)
网格可以编辑时,但在取消注释时,网格无法再编辑。我不知道这个。
@model IEnumerable<SubCateViewModel>
@(Html.Kendo().Grid(Model)
.Name("Grid")
.Columns(columns =>
{
columns.Bound(c => c.ProductSubcategoryID).Width(140);
columns.Bound(c => c.ProductCategoryID).Width(140);
columns.Bound(c => c.NameofBike).Width(190);
columns.Bound(c => c.Name).Width(190);
columns.Bound(c => c.ProductPhotoID).Width(50).ClientTemplate("<img alt='<#= PictureUrl #>' src'"
+ Url.Content("~/GetImage.ashx?ID=@bike.ProductProductPhotoes.FirstOrDefault().ProductPhotoID")
+ "#= PictureUrl#.jpq'/>").Title("Picture");
columns.Bound(c => c.isSelected).Width(120);
})
有人可以告诉我columns.Bound(c => c.ProductPhotoID)
发生了什么,并帮助我提前将图像放入网格中。我真的很感激!我遵循这个link。