2

我想根据查找字段的值向自定义功能区按钮添加显示规则,无论查找字段是否为空。我应该如何检查它。下面的代码不起作用。我将值指定为 0 , "" 但它仍然无法正常工作。请给出一些解决方案。谢谢。

<DisplayRule Id="mcg.mcg_transition.DisplayRule_lookup.DisplayRule">
    <ValueRule Field="ifx_lookupid" Value="null" Default="true" InvertResult="false" />
</DisplayRule>
4

1 回答 1

1

使用 Enable Rule 因为它提供了编写一些 JavaScript 函数的便利。

//Check if the field value is null or not? '
//in my case the field I am checking for null value is ifx_lookupid.

function DisplayRule_IfField_IsNull()
{
    var regardingField = Xrm.Page.getAttribute("ifx_lookupid");
    if (regardingField != undefined && regardingField != null) {
        return true;
        }
        else {
            return false;
        }
    }
}

希望这会有所帮助。

于 2015-06-18T05:33:38.880 回答