限制客户查找联系人错误

发布于 2024-09-27 10:50:42 字数 253 浏览 3 评论 0原文

我正在使用 microsoft Dynamics crm 4,

我插入了以下行以将客户查找限制为仅限联系人(无帐户):

crmForm.all.customerid.setAttribute("lookuptypes", "2");

它确实将查找仅限于联系人,但有一个奇怪的错误:

当我选择任何客户时,他旁边的图标变成帐户图标,而不是联系人图标(文件夹而不是卡片)

对此有解决方案吗?

I'm using microsoft dynamics crm 4

I inserted the following line to restrict a customer lookup to contacts only (no accounts):

crmForm.all.customerid.setAttribute("lookuptypes", "2");

It does restrict the lookup to contacts only, but there is a strange bug:

When i select any customer, the icon next to him becomes the account icon, not the contact icon (folder instead of card)

Any solutions to this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃→可爱长大的 2024-10-04 10:50:42

答案如下:

var customer = crmForm.all.customerid;
customer.lookuptypes = "2";
customer.lookuptypenames = "contact:2";
customer.lookuptypeIcons = "/_imgs/ico_16_2.gif";
customer.defaulttype = "2";

Andriy a33ik Butenko 发布,在 msdn 动态论坛上回复我的问题。

Here is the answer:

var customer = crmForm.all.customerid;
customer.lookuptypes = "2";
customer.lookuptypenames = "contact:2";
customer.lookuptypeIcons = "/_imgs/ico_16_2.gif";
customer.defaulttype = "2";

Posted by Andriy a33ik Butenko, in reply to my question on the msdn dynamics forum.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文