View | Details | Raw Unified | Return to bug 38255
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/virtualshelves/shelves.tt (+1 lines)
Lines 678-683 Link Here
678
                            });
678
                            });
679
                        }
679
                        }
680
                    },
680
                    },
681
                    bKohaAjaxSVC: true,
681
                    'columns':[
682
                    'columns':[
682
                        { "data": 'dt_public' },
683
                        { "data": 'dt_public' },
683
                        { "data": 'dt_shelfname' },
684
                        { "data": 'dt_shelfname' },
(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (+3 lines)
Lines 653-658 function LoadIssuesTable() { Link Here
653
                    borrowernumber
653
                    borrowernumber
654
                ),
654
                ),
655
            },
655
            },
656
            bKohaAjaxSVC: true,
656
            rowGroup: {
657
            rowGroup: {
657
                dataSrc: "issued_today",
658
                dataSrc: "issued_today",
658
                startRender: function (rows, group) {
659
                startRender: function (rows, group) {
Lines 1325-1330 $(document).ready(function () { Link Here
1325
                                .join("&")
1326
                                .join("&")
1326
                        ),
1327
                        ),
1327
                    },
1328
                    },
1329
                    bKohaAjaxSVC: true,
1328
                },
1330
                },
1329
                table_settings_relatives_issues_table
1331
                table_settings_relatives_issues_table
1330
            );
1332
            );
Lines 1581-1586 $(document).ready(function () { Link Here
1581
                        }
1583
                        }
1582
                    },
1584
                    },
1583
                },
1585
                },
1586
                bKohaAjaxSVC: true,
1584
                search: { search: "is_unresolved" },
1587
                search: { search: "is_unresolved" },
1585
                footerCallback: function (row, data, start, end, display) {
1588
                footerCallback: function (row, data, start, end, display) {
1586
                    var api = this.api();
1589
                    var api = this.api();
(-)a/koha-tmpl/intranet-tmpl/prog/js/datatables.js (-1 / +2 lines)
Lines 1252-1258 function _dt_save_restore_state(table_settings, external_filter_nodes = {}) { Link Here
1252
                };
1252
                };
1253
            }
1253
            }
1254
1254
1255
            if (options.ajax) {
1255
            if (options.ajax && !options.bKohaAjaxSVC) {
1256
                options.ajax = Object.assign(
1256
                options.ajax = Object.assign(
1257
                    {},
1257
                    {},
1258
                    options.ajax,
1258
                    options.ajax,
Lines 1311-1316 function _dt_save_restore_state(table_settings, external_filter_nodes = {}) { Link Here
1311
        }
1311
        }
1312
1312
1313
        $(this).data("bKohaColumnsUseNames", settings.bKohaColumnsUseNames);
1313
        $(this).data("bKohaColumnsUseNames", settings.bKohaColumnsUseNames);
1314
        $(this).data("bKohaAjaxSVC", settings.bKohaAjaxSVC); // Must not be used for new tables!
1314
        var table = $(this).dataTable(settings);
1315
        var table = $(this).dataTable(settings);
1315
1316
1316
        var table_dt = table.DataTable();
1317
        var table_dt = table.DataTable();
(-)a/koha-tmpl/intranet-tmpl/prog/js/holds.js (-1 / +1 lines)
Lines 484-489 $(document).ready(function () { Link Here
484
                            d.borrowernumber = borrowernumber;
484
                            d.borrowernumber = borrowernumber;
485
                        },
485
                        },
486
                    },
486
                    },
487
                    bKohaAjaxSVC: true,
487
                },
488
                },
488
                table_settings_holds_table
489
                table_settings_holds_table
489
            );
490
            );
490
- 

Return to bug 38255