zoukankan      html  css  js  c++  java
  • 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事件中比较好.

  • 相关阅读:
    2.4学习
    2.3学习
    2.2学习
    2.1学习
    公文流转系统 模拟
    《GCC编译器的使用以及静态库和动态库的制作与使用》
    《驱动调试
    《海思3521D
    《驱动调试
    《驱动调试
  • 原文地址:https://www.cnblogs.com/BinBinGo/p/5880493.html
Copyright © 2011-2022 走看看