我有一個kendo網格,我想添加一個footerTemplate,但是footerTemplate的值將是動態的(其他計算將會涉及到。)現在我的問題是,如何將計算值用於footherTemplate?Kendo footertemplate
以下是我的示例代碼。
var computedValue= compute();
$("#grid").kendoGrid({
dataSource: {
data: setData(),
pageSize: 10
},
sortable: true,
scrollable: false,
pageable: true,
columns: [
{ field: "UnitPrice", title: "Unit Price",
footerTemplate: "Price : #=computedValue#"
},
{ field: "UnitsOnOrder", title: "Units On Order"},
{ field: "UnitsInStock", title: "Units In Stock"}
]
});
,你可以看到,對於footerTemplate值是從一個 「VAR computedValue」,現在當我做什麼也沒發生。爲了顯示價值,正確的方法是什麼?
感謝
您必須在模板中編寫計算功能內容的模板,請發佈計算功能代碼以提供解決方案 – cwishva 2014-09-05 06:04:56