Not able to call function in typescript from kendo template in kendotreelist

旧城冷巷雨未停 提交于 2019-12-06 07:08:28

If you want to use functions in KendoUI templates you have to define them in the global (JavaScript-)Scope. (Reference)

Just extract the FormatNumberToEn function from the class A.

export class A { 
    /* class definition */ 
}
function FormatNumberToEn(value) { /* function logic */ }

Alternatively defining your function as static and calling A.FormatNumberToEn() inside the template might also work. (Can't test it right now as I'm on mobile.)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!