编辑:当我从正确加载的路径中删除〜符号时已解决。 我有一个 Kendo UI 网格,它显示来自数据源的数据。但是,应该显示图像的列没有显示。它显示为 X 标记。
当我将 html img 标签单独放在文档中时,我可以在浏览器中看到图像。知道我做错了什么。
$("#eventsgrid").kendoGrid({
dataSource: expensesDataSource,
navigatable: true,
pageable: {
input: true,
numeric: false
},
columns:[
{
field:"CardNumber"
},
{
field:"Description"
},
{
title: "Image", template: '<img src="~/Content/Themes/Default/images/Door.jpg" width="60" height="80"/>'
}
]
}).data("kendoGrid");