0

我的表单中有一个“添加新”按钮,并且根据功能区工作台编写了一个命令操作(/_static/_common/scripts/RibbonActions.js)来创建新记录。

现在我想将我的另一个函数添加为另一个返回 true 或 false 的命令操作。

如果它返回true,那么默认的create函数将执行。

我该怎么做,有人知道吗?

4

1 回答 1

0

尝试使用脚本中的以下函数更新新按钮命令:

function MyAddNewAction(entityTypeName){
    var bContinue = true;
    // your validation code here, and update bContinue
    //

    if(bContinue){
        Mscrm.RibbonActions.openNewRecord(entityTypeName);
    }
}

希望能帮助到你!

于 2014-11-12T07:41:17.147 回答