首页 > 代码库 > CRM 2016 自定义lookup过滤
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=http://www.mamicode.com/‘" + customertypecode + "‘ /></filter>"; Xrm.Page.getControl("new_typeofoperationid").addCustomFilter(fetchXml); } }
以上代码指在实现,以下功能:
1 当选择客户类型时,自动按选择后的 客户类型去过滤 终端业态这个lookup.
2 这两个函数应该放在 客户类型的onchange事件中比较好.
CRM 2016 自定义lookup过滤
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。