0
私はKendoGrid、javascriptのGridViewを持っています。アイコンの列のJavascriptのクラスをKendoGridのテンプレートとして参照するにはどうすればよいですか?
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>
"どのように私はそれを参照するかを参照する必要がありますか?そのクラスのアイコンが表示されるようにテンプレートをどのように入れますか?