|
|
@ -138,6 +138,12 @@ var table = {
|
|
|
|
detailFormatter: options.detailFormatter, // 在行下面展示其他数据列表
|
|
|
|
detailFormatter: options.detailFormatter, // 在行下面展示其他数据列表
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
selectRow: function() {
|
|
|
|
|
|
|
|
var rows = $.map($("#" + table.options.id).bootstrapTable('getSelections'), function (row) {
|
|
|
|
|
|
|
|
return row;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return rows;
|
|
|
|
|
|
|
|
},
|
|
|
|
// 获取实例ID,如存在多个返回#id1,#id2 delimeter分隔符
|
|
|
|
// 获取实例ID,如存在多个返回#id1,#id2 delimeter分隔符
|
|
|
|
getOptionsIds: function(separator) {
|
|
|
|
getOptionsIds: function(separator) {
|
|
|
|
var _separator = $.common.isEmpty(separator) ? "," : separator;
|
|
|
|
var _separator = $.common.isEmpty(separator) ? "," : separator;
|
|
|
@ -466,6 +472,7 @@ var table = {
|
|
|
|
// 获取当前页选中或者取消的行ID
|
|
|
|
// 获取当前页选中或者取消的行ID
|
|
|
|
affectedRowIds: function(rows) {
|
|
|
|
affectedRowIds: function(rows) {
|
|
|
|
var column = $.common.isEmpty(table.options.uniqueId) ? table.options.columns[1].field : table.options.uniqueId;
|
|
|
|
var column = $.common.isEmpty(table.options.uniqueId) ? table.options.columns[1].field : table.options.uniqueId;
|
|
|
|
|
|
|
|
console.log(column)
|
|
|
|
var rowIds;
|
|
|
|
var rowIds;
|
|
|
|
if ($.isArray(rows)) {
|
|
|
|
if ($.isArray(rows)) {
|
|
|
|
rowIds = $.map(rows, function(row) {
|
|
|
|
rowIds = $.map(rows, function(row) {
|
|
|
|