0

此代码在 4.0 中工作,2011 年,当我尝试设置查找的值时,出现“initializelookuppresence”错误

4.0 代码

lookupCell.innerHTML = '<TABLE style="table-layout: fixed" class="ms-crm-Lookup" cellspacing="0" cellpadding="0" width="100%"><TBODY><TR><TD><DIV class="ms-crm-Lookup" tabindex="1011" role="list" ime-mode="auto" ms-crm-hidden-nobehavior><UL style="float: left"></UL></DIV><LABEL class="ms-crm-Hidden-NoBehavior" for=' + id + '_ledit>Related Entity</LABEL><INPUT style="display: inline"  id='+ id +'_ledit class=ms-crm-Hidden-NoBehavior disabled tabIndex=1010 ime-mode="auto"></TD><TD class=Lookup_RenderButton_td width=25><IMG style="ime-mode: auto" id=' + id + ' class="ms-crm-Lookup ms-crm-ImageStrip-btn_off_lookup" title="Click to select a value for Company." alt="Click to select a value for Company." src="/_imgs/imagestrips/transparent_spacer.gif" savedquerytype="" forfield=' + label + ' isDisplayOnly="False"  resolveemailaddress="0" disableviewpicker="0" disablequickfind="0" disablemru="0" allowfilteroff="1" AutoResolve="1" additionalparams=""  defaulttype="2" lookupstyle="single" lookupbrowse="0" lookuptypeIcons="/_imgs/ico_16_2.gif:/_imgs/ico_16_8.gif" lookuptypenames="contact:2:Contact,systemuser:8:User" lookuptypes="2,8" attrpriv="7"  req="1" _lookupstyle="single" _lookuptypes="2,8" _lookupbrowse="0"><A title="Click to select a value for Company." tabIndex=-1 onclick=previousSibling.click(); href="#"></A></TD></TR></TBODY></TABLE>';

有人在 2011 年成功尝试过吗?

4

2 回答 2

0

我认为您需要以下内容

Xrm.Page.getAttribute(“fieldName”).setValue([new {id: idValue, name: textValue, entityType: typeValue}]);

于 2012-04-20T03:13:51.247 回答
0

您正在完全替换查找控件。它在 2011 年没有使用与 4.0 中相同的 HTML 呈现。不支持对这些控件的 HTML 进行任何处理。但是,我在那里看到了一些实体查找类型的覆盖......我猜这就是你想要实现的目标,对吗?实现这一点的(也是不受支持的)方法是覆盖元素的属性(而不是整个控件)。

document.getElementById("parentcustomerid").setAttribute("lookuptypes","2");
document.getElementById("parentcustomerid").setAttribute("lookuptypenames", "contact:2"); document.getElementById("parentcustomerid").setAttribute("lookuptypeIcons", "/_imgs/ico_16_2.gif"); document.getElementById("parentcustomerid").setAttribute("defaulttype", "2");

我发现Rhett 的帖子中的评论对于更多细节非常有用。

希望有帮助。

于 2012-04-16T14:12:05.517 回答