如何将过滤后的视图添加到功能区“添加现有”按钮

时间:2012-01-10 09:22:19

标签: dynamics-crm-2011

我有一个与当前记录有n:n关系的子网格。

我想将过滤后的视图添加到此子网格的“添加现有”按钮。

有什么想法吗?

(我遵循了这篇与我的要求完全相同的文章:http://danielcai.blogspot.com/2011/12/filtered-lookup-for-existing-button-of.html

1 个答案:

答案 0 :(得分:5)

首先,您必须导出包含您要过滤类型的实体的解决方案:

customizations.xml 中找到 RibbonDiffXml 节点并添加以下代码:

  <RibbonDiffXml>
    <CustomActions />
    <Templates>
      <RibbonTemplates Id="Mscrm.Templates"></RibbonTemplates>
    </Templates>
    <CommandDefinitions />

CommandDefinitions 节点中,添加:

<CommandDefinitions>
  <CommandDefinition Id="Mscrm.AddExistingRecordFromSubGridAssociated">
    <EnableRules>
      <EnableRule Id="Mscrm.AppendToPrimary" />
      <EnableRule Id="Mscrm.EntityFormIsEnabled" />
    </EnableRules>
    <DisplayRules>
      <DisplayRule Id="Mscrm.AddExisting" />
      <DisplayRule Id="Mscrm.ShowForManyToManyGrids" />
      <DisplayRule Id="Mscrm.AppendToPrimary" />
      <DisplayRule Id="Mscrm.AppendSelected" />
      <DisplayRule Id="Mscrm.CanWriteSelected" />
    </DisplayRules>
    <Actions>
      <JavaScriptFunction FunctionName="addExistingCustomFilter" Library="$webresource:new_yourLibrary">
        <CrmParameter Value="SelectedEntityTypeCode" />
        <CrmParameter Value="SelectedControl" />
        <CrmParameter Value="PrimaryEntityTypeName" />
      </JavaScriptFunction>
    </Actions>
  </CommandDefinition>
  <CommandDefinition Id="Mscrm.AddExistingRecordFromSubGridStandard">
    <EnableRules>
      <EnableRule Id="Mscrm.AppendToPrimary" />
      <EnableRule Id="Mscrm.EntityFormIsEnabled" />
    </EnableRules>
    <DisplayRules>
      <DisplayRule Id="Mscrm.AddExisting" />
      <DisplayRule Id="Mscrm.ShowForManyToManyGrids" />
      <DisplayRule Id="Mscrm.AppendToPrimary" />
      <DisplayRule Id="Mscrm.AppendSelected" />
      <DisplayRule Id="Mscrm.CanWriteSelected" />
    </DisplayRules>
    <Actions>
      <JavaScriptFunction FunctionName="addExistingCustomFilter" Library="$webresource:new_yourLibrary">
        <CrmParameter Value="SelectedEntityTypeCode" />
        <CrmParameter Value="SelectedControl" />
        <CrmParameter Value="PrimaryEntityTypeName" />
      </JavaScriptFunction>
    </Actions>
  </CommandDefinition>
</CommandDefinitions>

代码来自您可以在CRM 2011 SDK中找到的XML文件,并且已经过修改以从自定义Javascript库中调用自定义函数。

然后,在库属性中创建具有上面指定名称的新JS库。

添加第一个通用函数:

/*****************************************/
/*                                       */
/*      Add Custom View To Subgrid       */
/*                                       */
/*****************************************/
function addExistingFromSubGridCustom(params) {

    var relName = params.gridControl.getParameter("relName"),
        roleOrd = params.gridControl.getParameter("roleOrd"),
        viewId = "{00000000-0000-0000-0000-000000000001}"; // a dummy view ID

    var customView = {
        fetchXml: params.fetchXml,
        id: viewId,
        layoutXml: params.layoutXml,
        name: params.name,
        recordType: params.gridTypeCode,
        Type: 0
    };

    var lookupItems = LookupObjects(null, "multi", params.gridTypeCode, 0, null, "", null, null, null, null, null, null, viewId, [customView]);
    if (lookupItems && lookupItems.items.length > 0) {
        AssociateObjects(crmFormSubmit.crmFormSubmitObjectType.value, crmFormSubmit.crmFormSubmitId.value, params.gridTypeCode, lookupItems, IsNull(roleOrd) || roleOrd == 2, "", relName);
    }
}

最后,添加应该由按钮调用的函数:

function addExistingCustomFilter(gridTypeCode, gridControl, primaryEntityName) {

// Here you can specify for which entity the filter should be applied.
// For example, filter only when you try to add an existing record to a client.
// In the other cases, you will call the default method.
    if (primaryEntityName != "client" ) {
        Mscrm.GridRibbonActions.addExistingFromSubGridStandard(gridTypeCode, gridControl);
        return;
    }

    // Add some logic to retrieve information needed to filter your view if you want to


    //Update the fetch that will be used by the grid.
    var fetch = '<fetch version="1.0" output-format="xml-platform" mapping="logical" distinct="false">' +
                '<entity name="...">' +
                '<attribute name="..." />' +
                '<filter type="and">' +
                '<condition ... />' +
                '</filter>' +
                '</entity>' +
                '</fetch>';
    // Add conditions to your fetch xml dynamically

    // Call the generic method with the rights arguments. 
    addExistingFromSubGridCustom({
        gridTypeCode: gridTypeCode,
        gridControl: gridControl,
        fetchXml: fetch,
        name: "My dynamyc custom filtered view!",
        layoutXml: '<grid name="" object="' + gridTypeCode + '"  jump="all_name" select="1" icon="1" preview="0">' +
               // Provide a layout xml ...
              '</grid>'
    });
}

发布所有内容,它应该没问题!