-1

我用了

document.getElementById("customerid").setAttribute("defaulttype", "2");
document.getElementById("customerid").setAttribute("lookuptype", "2");
Xrm.Page.getControl("customerid").setDefaultView("{A9AF0AB8-xxxx-xxxx-xxxx-C6281FED7FAB}");

Form_onchange(),它给了我这个错误:

对象不支持此属性或方法”。

如果我关闭弹出窗口,程序实际上工作正常。

可能是什么问题?

PS 我正在运行 IE9 并且错误消息没有指定不支持哪种方法。

4

1 回答 1

1

“{A9AF0AB8-xxxx-xxxx-xxxx-C6281FED7FAB}”不是有效的 GUID。确保使用视图的确切 GUID。

好吧,我从来没有见过任何人 X 出 GUID ......

无论如何,取出第2行,看看是否有效。我检查了我的一些代码,我有第 1 行和第 3 行。

此外,您的查找需要已经能够在界面中从帐户切换到联系人(类型代码 1 -> 2)(作为不通过 javascript 的用户)。

于 2012-06-28T23:03:03.673 回答