Revert "解决翻页记住选择时获取指定列值的问题"

This reverts commit af6a313
master
cain 5 years ago committed by Limy
parent bec3ac5099
commit 71c8e79a21

File diff suppressed because one or more lines are too long

@ -155,7 +155,6 @@
if ($.common.isNotEmpty($.table._option.rememberSelected) && $.table._option.rememberSelected) {
func = $.inArray(e.type, ['check', 'check-all']) > -1 ? 'union' : 'difference';
selectionIds = _[func](selectionIds, rowIds);
selectionRows = _[func](selectionRows, rows,"row");
}
});
// 图片预览事件
@ -366,9 +365,7 @@
return row[column];
});
if ($.common.isNotEmpty($.table._option.rememberSelected) && $.table._option.rememberSelected) {
rows = $.map(selectionRows, function (row) {
return row[column];
});
rows = rows.concat(selectionIds);
}
return $.common.uniqueFn(rows);
},
@ -391,9 +388,7 @@
return row[$.table._option.columns[1].field];
});
if ($.common.isNotEmpty($.table._option.rememberSelected) && $.table._option.rememberSelected) {
rows = $.map(selectionRows, function (row) {
return row[$.table._option.columns[1].field];
});
rows = rows.concat(selectionIds);
}
return $.common.uniqueFn(rows);
},

Loading…
Cancel
Save