如果所选行包含特定值,则禁用按钮 ng-grid

Disable button if the selected row contains a specific value ng-grid

如果该行包含特定值,我正在尝试为我的网格禁用删除按钮。

我已经在我的 ng-disable 中为该按钮设置了条件(并希望保留该条件),但我想添加第二个条件,例如:

mySelection.title == 'important'

如果我 select 两行,这将如何表现?它不会遍历 selected 行并检查这些行是否包含重要的标题,那么我该如何解决这个问题?

ng-disabled

中使用function()

对于 EX:

<button ng-disabled="isDisabled(mySelection.title, parameter2)"> Remove </button>

在控制器中,

 $scope.isDisabled = function(parameter1, parameter2) {
     // do your comparisons and return true or false 

     // for ex:

     // if(parameter1 == 'important' && parameter2 == 'spmeOtherValue') {
     //     return true;
     // } else {
     //     return false;
     // }
 }