我是CRM的新手。
我有一个查找。我想检索所选查找的列记录
我试过这个,只选择了查找name
,id
var lookupObject = Xrm.Page.getAttribute("schemaname");
if (lookupObject != null)
{
var lookUpObjectValue = lookupObject.getValue();
if ((lookUpObjectValue != null))
{
var lookuptextvalue = lookUpObjectValue[0].name;
var lookupid = lookUpObjectValue[0].id;
}
}
如何获取其他列值?
答案 0 :(得分:2)
查询字段仅包含id
,name
和entityType
属性。
如果要检索所选记录的其他字段,则需要调用CRM Web服务(在这种情况下足以使用REST
端点)
你可以在这里找到一个例子:
http://www.crmanswers.net/2013/07/set-accounts-primary-contact-as.html
在这里:
http://www.crmanswers.net/2013/04/get-current-users-full-name-with.html
请注意,当您使用REST
端点时,需要查找架构名称。例如,字段名称为FullName
而不是fullname
答案 1 :(得分:1)
你可以这样做,
var lookupObject = Xrm.Page.getAttribute("schemaname");
if (lookupObject != null)
{
var selectedrecordvalues = lookupObject.getValue()[0].keyValues;
//key values will come as array.
}
答案 2 :(得分:0)
我在对象查找中使用Json.parse()
并将值存储在变量中。例如:
accountJson = JSON.parse(accountid[0].keyValues);
accountid.name.value;