如何从表单事件调用命名空间中的函数?我努力了
accountLib.accountType.showType
和
accountLib.accountType.showType()
在 onload 事件中,但它不起作用。
这是代码:
/// <reference path="Scripts/XrmPageTemplate.js" />
if (typeof (accountLib) == "undefined") {
accountLib == {}; // namespace
}
accountLib.accountType = {
showType: function () {
alert("RINNING");
}
};