Telerik网格自定义字段不起作用

时间:2016-02-25 13:53:28

标签: asp.net-mvc razor telerik

我尝试使用项目的Content / images文件夹中的图像填充网格列,但由于某种原因,该列不显示任何内容。

由于我可能以错误的方式编写了这条路径,因此我尝试使用一些文本来关注网络示例,没有任何运气。

这是我的自定义列:

columns.Template(@<text>
   custom content here, which is not related to the data
   </text>).Title("Column Title");

我正在使用Ajax绑定,因为那些columns.ClienteTemplate不是一个选项(我需要使用聚合,这在服务器绑定时是不可能的。

这是我的数据来源(abreviatted):

.DataSource(dataSource => dataSource
          .Ajax()
          .Read(read => read.Action("Products_Read", "Home"))
          )

任何帮助都将非常感激。

1 个答案:

答案 0 :(得分:0)

对于任何想知道它是如何完成的人来说,答案是:

    columns.Template(@<text>custom content</text>)
      .ClientTemplate("<img src=" + "../Images/LogoSGM-small.png" + " />")
      .Title("IMG");