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 682-687 Link Here
682
                            });
682
                            });
683
                        }
683
                        }
684
                    },
684
                    },
685
                    bKohaAjaxSVC: true,
685
                    'columns':[
686
                    'columns':[
686
                        { "data": 'dt_public' },
687
                        { "data": 'dt_public' },
687
                        { "data": 'dt_shelfname' },
688
                        { "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 1324-1330 function update_search_description( Link Here
1324
                };
1324
                };
1325
            }
1325
            }
1326
1326
1327
            if (options.ajax) {
1327
            if (options.ajax && !options.bKohaAjaxSVC) {
1328
                options.ajax = Object.assign(
1328
                options.ajax = Object.assign(
1329
                    {},
1329
                    {},
1330
                    options.ajax,
1330
                    options.ajax,
Lines 1383-1388 function update_search_description( Link Here
1383
        }
1383
        }
1384
1384
1385
        $(this).data("bKohaColumnsUseNames", settings.bKohaColumnsUseNames);
1385
        $(this).data("bKohaColumnsUseNames", settings.bKohaColumnsUseNames);
1386
        $(this).data("bKohaAjaxSVC", settings.bKohaAjaxSVC); // Must not be used for new tables!
1386
        var table = $(this).dataTable(settings);
1387
        var table = $(this).dataTable(settings);
1387
1388
1388
        var table_dt = table.DataTable();
1389
        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