mirror of
https://github.com/janeczku/calibre-web
synced 2025-10-21 18:47:39 +00:00
Merge branch 'master' into Develop
# Conflicts: # cps.py # cps/web.py
This commit is contained in:
@@ -22,6 +22,26 @@ var selections = [];
|
||||
var reload = false;
|
||||
|
||||
$(function() {
|
||||
$('#tasktable').bootstrapTable({
|
||||
formatNoMatches: function () {
|
||||
return '';
|
||||
},
|
||||
striped: true
|
||||
});
|
||||
if ($('#tasktable').length) {
|
||||
setInterval(function () {
|
||||
$.ajax({
|
||||
method: "get",
|
||||
url: getPath() + "/ajax/emailstat",
|
||||
async: true,
|
||||
timeout: 900,
|
||||
success: function (data) {
|
||||
$('#table').bootstrapTable("load", data);
|
||||
}
|
||||
});
|
||||
}, 2000);
|
||||
}
|
||||
|
||||
$("#books-table").on("check.bs.table check-all.bs.table uncheck.bs.table uncheck-all.bs.table",
|
||||
function (e, rowsAfter, rowsBefore) {
|
||||
var rows = rowsAfter;
|
||||
@@ -611,6 +631,7 @@ function checkboxFormatter(value, row){
|
||||
else
|
||||
return '<input type="checkbox" class="chk" data-pk="' + row.id + '" data-name="' + this.field + '" onchange="checkboxChange(this, ' + row.id + ', \'' + this.name + '\', ' + this.column + ')">';
|
||||
}
|
||||
|
||||
function singlecheckboxFormatter(value, row){
|
||||
if(value)
|
||||
return '<input type="checkbox" class="chk" data-pk="' + row.id + '" data-name="' + this.field + '" checked onchange="checkboxChange(this, ' + row.id + ', \'' + this.name + '\', 0)">';
|
||||
|
Reference in New Issue
Block a user