CRM 2016 自定义lookup过滤
Posted BinBinGo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CRM 2016 自定义lookup过滤相关的知识,希望对你有一定的参考价值。
function preFilterLookup() { //终端业态 Xrm.Page.getControl("new_typeofoperationid").addPreSearch(function () { addLookupFilter(); }); } function addLookupFilter() { var customertypecode = Xrm.Page.getAttribute("customertypecode").getValue(); //客户类型 if (customertypecode != null) { fetchXml = "<filter type=‘and‘><condition attribute=‘new_customertypecode‘ operator=‘eq‘ value=‘" + customertypecode + "‘ /></filter>"; Xrm.Page.getControl("new_typeofoperationid").addCustomFilter(fetchXml); } }
以上代码指在实现,以下功能:
1 当选择客户类型时,自动按选择后的 客户类型去过滤 终端业态这个lookup.
2 这两个函数应该放在 客户类型的onchange事件中比较好.
以上是关于CRM 2016 自定义lookup过滤的主要内容,如果未能解决你的问题,请参考以下文章
salesforce lightning零基础学习(十三) 自定义Lookup组件(Single & Multiple)