gpt4 book ai didi

javascript - 我怎样才能使一些表格行在 SmartTable angularjs 中不可选择

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:00:26 26 4
gpt4 key购买 nike

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

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

这是代码示例:

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

谢谢迪马

最佳答案

你可以添加条件

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

在 Controller 中

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

另外,你的 html 不正确

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

改成

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

工作示例 here

关于javascript - 我怎样才能使一些表格行在 SmartTable angularjs 中不可选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40865440/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com