Kendo UI网格(javascript) - 如何通过调用函数填充单元格?

时间:2015-08-25 17:08:24

标签: kendo-ui

我的dataSource数据对象是项目的集合(500 +):

{
   var oftype; // can be 1, 2, 3 etc.
   var value; // string value of variable length
}

在Kendo网格中显示时,我正在显示"值"但是,而不是"类型"值1,2,3等我希望显示" oftype"的描述。我有一个功能 getDescription(oftype);返回一个字符串。

问题:    如何定义kendo网格,以便使用函数getDescription填充" oftype"?

谢谢。

1 个答案:

答案 0 :(得分:0)

在列中使用template,例如:

template: "#: getDescription(oftype) #"

Demo