columns: [{ title: 'Attain', field: 'Attain', width: '4%', template: '<img src="<#= Images/green.png #>" />', sortable: true },]
我在colum中写了这行代码,用于添加image.i将green.png文件放在Images文件夹中,以及在数据库中存储的绿色,红色,黄色字符串名称Attain column ...现在我想检查是否dbstringvalue是grren然后我想显示绿色图像(如果红色,红色图像像) 我应该在哪里写条件代码..这可以设置。
答案 0 :(得分:2)
剑道模板可能包含条件逻辑。这是一个例子:
columns: [{
field: "Attain",
template: "# if (Attain == 'red' ) { # <img src='red.gif' /> # } else # { <img src='green.gif' #}#
}]
有关Kendo模板的更多信息,请参阅documentation。