我正在使用MS Dynamics CRM 2013,我正面临下一个问题:在CRM 2011中,我通过使用下一个jscript来禁用查找和实体选择:
document.getElementById("lookup_id").setAttribute("disableViewPicker", "1");
document.getElementById("lookup_id").setAttribute("defaulttype", "1");
document.getElementById("lookup_id").setAttribute("lookuptypenames", "account:1:Account");
document.getElementById("lookup_id").setAttribute("lookuptypes", "1");
Run Code Online (Sandbox Code Playgroud)
但在迁移到Dynamics Crm 2013后,此脚本不再起作用.
你能帮我解决这个问题吗?谢谢!