我正在尝试从使用分页的igGrid获取所有选定的行。问题是当我使用下面的代码时,我只得到当前页面(DOM)的选定行。不返回其他页面中的选定行。
有没有办法为每个页面获取所有选定的行?
以下是获取所选行的代码。
function getGridSelectedRowIds(GridId) {
//Here I get only the selected rows of the current page
var selectedRows = $("#" + GridId).igGrid("selectedRows");
$scope.totalSelectedRowsIds = [];
_.each(selectedRows, function (row) {
$scope.totalSelectedRowsIds.push(row.id);
});
}
答案 0 :(得分:1)
您没有提供网格代码或IgniteUI版本,但这里有适合您的fiddle。
启用选择网格功能
{name: "Selection", multipleSelection:true}
这很好用
$("#grid").igGridSelection("selectedRows");