1
類a中的kendo TreeList代碼(打字稿文件):我已經從kendo模板中調用函數。kendotreelist中kendo模板不能調用打字稿中的函數
export class A{
drillDownDataSource: any;
constructor() {
this.GetStatutoryIncomeGridViewData();
}
GetStatutoryIncomeGridViewData() {
$.ajax({
type: 'POST',
url: 'Controller/Action/',
data: stfilterData,
success: function (data) {
$("#grid").kendoTreeList({
dataSource: data,
columns: [
{ field: "Transaction1",
template:kendo.template("#=FormatNumberToEn(Transaction1)#").bind(this) },
}
});
});
public FormatNumberToEn(value) { }
}
}
得到錯誤function FormatNumberToEn is undefined
您應該發佈整個A類以及它可能屬於的任何模塊。當您嘗試調用該函數時,它很重要。 – toskv
@toskv添加了類 –