我正在使用Angular和dirPagination指令构建一个CRUD数据管理项目,需要一个“全选”复选框,选中所有可见/不使用/使用jQuery的行。
我从这开始 - 注意 - 我正在攀登Angular学习曲线并且意识到这部分/全部可能不是“Angular方式”但我也不想开始摆弄(没有双关语) dirPagination的胆量,ergo dirPagination指令:
<tr dir-paginate-start="item in items|filter:filterFunction()|orderBy:sortPredicate:reverse| itemsPerPage: rowsPerPage">
和单独的行复选框
<input type="checkbox" class="rowSelector" ng-model="item.isSelected" ng-change="rowSelect($index, $event)"/> status: {{item.isSelected}}
和相关的模型元素:
$scope.items = [] //subsequently filled
$scope.rowsPerPage = 5;
$scope.rowSelect = function (ix, $event) {
var checked = (typeof $event == 'undefined') ? false : true;
if (!checked) { $scope.masterCheck = false; }
var rpp = $scope.rowsPerPage;
var p = $scope.__default__currentPage; //dirPagination's current page
var start = ((Math.max(0, p - 1) * rpp));
$scope.items[start + ix].isSelected = checked;
};
按预期工作。选中/取消选中一行,{{item.isSelected}}值将在模型中更新,并显示在复选框旁边。
然后我在dirPagination重复块中添加了这个/外部:
<input type="checkbox" id="masterCheckbox" ng-model="masterCheck" ng-click="checkAll()" />
以及模型中的相关功能:
$scope.masterCheck = false;
$scope.checkAll = function () {
var rpp = $scope.rowsPerPage;
var p = $scope.__default__currentPage; //dirPagination's current page
var start = ((Math.max(0, p - 1) * rpp));
var checked = $scope.masterCheck == true;
var rows = document.getElementsByClassName("rowSelector");
for (var ix = 0; ix < rows.length; ix++) {
rows[ix].checked = checked;
$scope.items[start + ix].isSelected = checked;
}
}
但是在checkAll()函数中,检查/取消选中各行不会反映在每行的{{item.isSelected}}显示中。
使用
明确设置单个项目$scope.items[start + ix].isSelected = checked;
似乎在checkAll函数的范围内设置该项的'isSelected'属性,但行显示不会改变。
显然我有一些错误可能会误解范围问题,但此时我很难过。
非常感谢任何帮助: - )
答案 0 :(得分:3)
checkAll()写入尝试通过使用dir-paginate的__default__currentPage和Angular的row $ index计算其位置来访问每一行。
当然这不起作用,因为dir-paginate持有的items []集合已经过过滤和排序,所以当items []得到检查(item.isSelected = true)时,所选的项目/行是生活在不可见的页面上。即 - 我们选择了错误的索引。
一种解决方案包括以下内容 -
主复选框
<input type="checkbox" id="masterCheckbox" ng-model="masterCheck" ng-click="checkAll()" />
行复选框(注释函数调用)
<input type="checkbox" class="rowSelector" value="{{sourceIndex('senId',item.senId)}}" ng-model="item.isSelected" ng-click="rowSelect(this)" />
dir-paginate指令控制标记
<dir-pagination-controls on-page-change="onPageChange(newPageNumber)" max-size="15" direction-links="true" boundary-links="true" pagination-id="" template-url=""></dir-pagination-controls>
以及相关的$ scope值和函数:
$scope.items = [];
$scope.masterCheck = false;
$scope.onPageChange = function (newPageNumber) {
//clear all selections on page change
//dir-paginate provides this hook
$scope.masterCheck = false;
for (var i in $scope.items) {
$scope.items[i].isSelected = false;
}
}
$scope.rowSelect = function (item) {
//if one is unchecked have to turn master off
if (!item.isSelected) $scope.masterCheck = false;
}
$scope.sourceIndex = function (keyName, key) {
//gets the actual items index for the row key
//see here http://stackoverflow.com/questions/21631127/find-the-array-index-of-an-object-with-a-specific-key-value-in-underscore
//for the 'getIndexBy' prototype extension
var ix = $scope.items.getIndexBy(keyName, key);
return ix;
}
$scope.checkAll = function () {
//only visible rows
var boxes = document.getElementsByClassName("rowSelector");
for (var bix in boxes) {
var ix = boxes[bix].value;
$scope.items[ix].isSelected = $scope.masterCheck;
}
}
可能有一种更好的方法,但虽然效率不高,但这种方法对普通人来说效果不错。
$ scope.sourceIndex()函数将实际的源行索引填入行复选框,作为其value = attribute value。
checkAll()函数然后通过“rowSelector”类抓取所有可见行,然后遍历那些从复选框值中获取数据索引并设置相应item.isSelected。
$ scope.onPageChange在dir-Paginate controls指令中指定,并确保在页面更改时清除所有行选择。
开心快乐。
答案 1 :(得分:0)
你的变量masterCheck在rowSelect()中设置为false,然后在checkAll()中你设置为masterCheck,然后用于分配isSelected
这一行错了:
var checked = $scope.masterCheck == true;
因为你想要翻转masterCheck所以它应该是:
$scope.masterCheck = !$scope.masterCheck;
然后
.isSelected = $scope.masterCheck;
你没有将$ scope.masterCheck设置为true所以它总是假的,因为你的isSelected值取决于它,它们总是假的。此外,它还可以作为checkAll / unCheckAll使其仅检查对以下内容的所有更改:
$scope.masterCheck = !$scope.masterCheck;
var checked = $scope.masterCheck == true;