2

我试图向连接子网格功能区添加一个按钮。此按钮仅在主要实体等于“new_visitreport”时才可见。这是我的尝试:

      <CustomAction Id="Visitreports.connection.customAction"
                    Location="Mscrm.SubGrid.connection.MainTab.Management.Controls._children"
                    Sequence="15" >
        <CommandUIDefinition>
          <Button Id="Mscrm.SubGrid.connection.AddXYZ" 
                  ToolTipTitle="$LocLabels:Button.AddXYZ.Label"
                  ToolTipDescription="$LocLabels:Button.AddXYZ.Tooltip"
                  LabelText="$LocLabels:Button.AddXYZ.Label"
                  Command="Button.AddXYZ.Command" 
                  Image16by16="$webresource:new_XYZ_16" 
                  Image32by32="$webresource:new_XYZ_32" 
                  TemplateAlias="o1" />
        </CommandUIDefinition>

      </CustomAction>

      <CommandDefinition Id="Button.AddXYZ.Command">
        <EnableRules></EnableRules>
        <DisplayRules>
            <DisplayRule Id="EntityEqualsVisitreport" />
        </DisplayRules>
        <Actions>
          <JavaScriptFunction FunctionName="openDialog"
                              Library="$webresource:new_script_open_dialog">
            <StringParameter Value="3EEE3AE1-5543-433E-8123-6A14EA925A96" />
            <StringParameter Value="3EEE3AE1-5543-433E-8123-6A14EA925A96" />
            <BoolParameter Value="false" />
          </JavaScriptFunction>
        </Actions>
      </CommandDefinition>

        <DisplayRule Id="EntityEqualsVisitreport">
          <EntityRule AppliesTo="PrimaryEntity"
                      EntityName="new_visitreport" />
        </DisplayRule>

这条规则似乎总是返回 false。如果我从命令定义中删除显示规则,则按钮可见,但独立于当前主要实体。

我的示例中是否有任何错误,或者尽管它受支持,但它不适用于自定义实体炎?(MSDN 文章

4

1 回答 1

2

尝试使用FormEntityContextRule它,看起来这些人遇到了与您相同的问题。 论坛链接

<FormEntityContextRule EntityName="account"/>
于 2013-11-14T14:26:50.420 回答