我有一个KendoGrid,一个javascript GridView。
columns: function () {
return [
{
title: "Icon",
width: 32,
template: function (data)
{
}
},
{
field: "DisplayFileName",
title: "Document Name",
width: 300,
//template: function (data) {
//}
},
{
field: "DocumentType",
title: "DocumentType",
titleKey: 'Document Type',
filterable: true,
},
对于图标列,我需要引用'<i class="fa fa-warning red"></i>
'如何引用它?如何放入模板以显示该类的图标?
答案 0 :(得分:1)
我在我的项目中一直这样做(它显示带图标的按钮):
/clr