我怎样才能使某些 table 行不在 SmartTable angularjs 中选择 table

How can i make some of the table rows not selectable in SmartTable angularjs

我正在使用 angularJS 和智能 table 框架来管理 html 中的 table:

  1. table 行 select 可以使用 SmartTable 属性:st-select-row="row".
  2. 在用户 select 行后单击 "add" 按钮,selected 数据注册到其他列表。
  3. 我不想从 table 中删除添加的行,但我确实希望它们 select 不可用。

这是代码示例:

HTML:

<body ng-app="FarmManagment" ng-controller="mainCtrl">
 <table id="Table" class="table table-hover" st-table="displayedCollection" st-safe-src="rowCollection">
<thead>
  <tr>
    <th st-sort="farmName">Farm Name</th>
    <th st-sort="FarmDescription">Description</th>
    <th st-sort="DataCenter">DC</th>
  </tr>
</thead>
<tbody>
  <tr st-select-row="row" st-select-mode="multiple" ng-repeat="row in displayedCollection">
    <td ng-bind="row.farmName">{{row.farmName}}</td>
    <td ng-bind="row.FarmDescription"></td>
    <td ng-bind="row.DataCenter"></td>
  </tr>
</tbody>
</table>
 <button id="add" ng-click="add(displayedCollection)"> add </button>
 <li>
  <ul ng-bind="row.farmName" ng-repeat="row in added"></ul>
 </li>
</body>

JavaScript:

 var app = angular.module('FarmManagment', ['smart-table']);
 app.controller('mainCtrl', function ($scope) {


$scope.rowCollection = [
    {farmName: 'farm1', FarmDescription: 'some farm1', DataCenter: 'London'},
    {farmName: 'farm2', FarmDescription: 'some farm2', DataCenter: 'Paris'},
    {farmName: 'farm3', FarmDescription: 'some farm3', DataCenter: 'Berlin'}
];

$scope.added = [];



$scope.add = function(rows){
  angular.forEach(rows,function(row){
    if (row.isSelected === true){
      row.isSelected = false;
      var index = $scope.added.indexOf(row);
      if(index === -1){
      $scope.added.push(row);
      // row.disableSelection    this is what i want to do
      }
    }

  });
};
});

我该如何实现这种行为?

插件代码:plunker

谢谢 迪马

可以使用属性 st-select-row:

例如防止第二行select可用

<tr st-select-row="$index != 1 ? row : null" st-select-mode="multiple" ng-repeat="row in displayedCollection">

plunker

您可以添加条件,例如

<tr st-select-row="isSelectableRow(row)" st-select-mode="multiple" ng-repeat="row in displayedCollection">

并在控制器中

$scope.isSelectableRow = function (row) {
  if (~$scope.added.indexOf(row))
    return false;
    return row;
}

还有,你有不正确的html

<li><ul>..</ul></li>

改为

<ul><li>..</li></ul>

工作示例here