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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/booksellers.tt (-1 / +1 lines)
Lines 265-271 Link Here
265
        $(document).ready(function () {
265
        $(document).ready(function () {
266
            $("table.baskets").kohaTable({
266
            $("table.baskets").kohaTable({
267
                dom: "t",
267
                dom: "t",
268
                paginate: false,
268
                paging: false,
269
                searching: false,
269
                searching: false,
270
                info: false,
270
                info: false,
271
                order: [[1, "asc"]],
271
                order: [[1, "asc"]],
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/duplicate_orders.tt (-1 / +1 lines)
Lines 329-335 Link Here
329
        $(document).ready(function() {
329
        $(document).ready(function() {
330
            $('span.hint').hide();
330
            $('span.hint').hide();
331
            $("#table_orders").kohaTable({
331
            $("#table_orders").kohaTable({
332
                paginate: false,
332
                paging: false,
333
            });
333
            });
334
334
335
            [% IF op == 'search' OR op == 'select' %]
335
            [% IF op == 'search' OR op == 'select' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/z3950_search.tt (-1 / +1 lines)
Lines 336-342 Link Here
336
            var resultst = $("#resultst").kohaTable({
336
            var resultst = $("#resultst").kohaTable({
337
                columnDefs: [{ targets: [1], type: "nsb-nse" }],
337
                columnDefs: [{ targets: [1], type: "nsb-nse" }],
338
                order: [[1, "asc"]],
338
                order: [[1, "asc"]],
339
                paginate: false,
339
                paging: false,
340
                searching: false,
340
                searching: false,
341
                info: false,
341
                info: false,
342
            });
342
            });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt (-1 / +1 lines)
Lines 439-445 Link Here
439
        $(document).ready(function() {
439
        $(document).ready(function() {
440
            $("#table_authsubfieldstructure").kohaTable({
440
            $("#table_authsubfieldstructure").kohaTable({
441
                aaSorting: [],
441
                aaSorting: [],
442
                paginate: false,
442
                paging: false,
443
            });
443
            });
444
444
445
            if ($("#subfieldtabs").length > 0) {
445
            if ($("#subfieldtabs").length > 0) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/branch_transfer_limits.tt (-1 / +1 lines)
Lines 180-186 Link Here
180
180
181
            [% FOREACH codes_loo IN codes_loop %]
181
            [% FOREACH codes_loo IN codes_loop %]
182
                $("#[% codes_loo.code | html %]table").kohaTable({
182
                $("#[% codes_loo.code | html %]table").kohaTable({
183
                    paginate: false,
183
                    paging: false,
184
                });
184
                });
185
            [% END %]
185
            [% END %]
186
        });
186
        });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt (-1 / +1 lines)
Lines 200-206 Link Here
200
200
201
            var table = $("#localization").kohaTable({
201
            var table = $("#localization").kohaTable({
202
                dom: "t",
202
                dom: "t",
203
                paginate: false,
203
                paging: false,
204
                autoWidth: false,
204
                autoWidth: false,
205
            });
205
            });
206
206
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/patron-attr-types.tt (-1 / +1 lines)
Lines 460-466 Link Here
460
            $(".patron_attributes_types").each(function () {
460
            $(".patron_attributes_types").each(function () {
461
                $(this).kohaTable(
461
                $(this).kohaTable(
462
                    {
462
                    {
463
                        paginate: false,
463
                        paging: false,
464
                        autoWidth: false,
464
                        autoWidth: false,
465
                    },
465
                    },
466
                    null
466
                    null
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/smart-rules.tt (-1 / +1 lines)
Lines 1440-1446 Link Here
1440
                    [2, "asc"],
1440
                    [2, "asc"],
1441
                    [3, "asc"],
1441
                    [3, "asc"],
1442
                ],
1442
                ],
1443
                paginate: false,
1443
                paging: false,
1444
                autoWidth: false,
1444
                autoWidth: false,
1445
            });
1445
            });
1446
        });
1446
        });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/systempreferences.tt (-1 / +1 lines)
Lines 498-504 Link Here
498
               [% IF ( loop ) %]
498
               [% IF ( loop ) %]
499
                   $("#sysprefst").kohaTable({
499
                   $("#sysprefst").kohaTable({
500
                       dom: '<"top pager"ilf>t',
500
                       dom: '<"top pager"ilf>t',
501
                       paginate: false,
501
                       paging: false,
502
                   });
502
                   });
503
               [% END %]
503
               [% END %]
504
            });
504
            });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-3 / +3 lines)
Lines 2077-2083 Link Here
2077
                var acquisitiondetails_table = $("#orders").kohaTable(
2077
                var acquisitiondetails_table = $("#orders").kohaTable(
2078
                    {
2078
                    {
2079
                        dom: 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
2079
                        dom: 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>',
2080
                        paginate: false,
2080
                        paging: false,
2081
                        autoWidth: false,
2081
                        autoWidth: false,
2082
                        order: [[4, "desc"]],
2082
                        order: [[4, "desc"]],
2083
                    },
2083
                    },
Lines 2095-2101 Link Here
2095
                var comment_table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'comments-table', 'json') | $raw %];
2095
                var comment_table_settings = [% TablesSettings.GetTableSettings('catalogue', 'detail', 'comments-table', 'json') | $raw %];
2096
                var comments_table = $("#comments_table").kohaTable(
2096
                var comments_table = $("#comments_table").kohaTable(
2097
                    {
2097
                    {
2098
                        paginate: false,
2098
                        paging: false,
2099
                        autoWidth: false,
2099
                        autoWidth: false,
2100
                        order: [[2, "desc"]],
2100
                        order: [[2, "desc"]],
2101
                    },
2101
                    },
Lines 2149-2155 Link Here
2149
                        orderable: false,
2149
                        orderable: false,
2150
                    },
2150
                    },
2151
                ],
2151
                ],
2152
                paginate: false,
2152
                paging: false,
2153
                ajax: { url: `/api/v1/biblios/${biblionumber}/item_groups?_per_page=-1` },
2153
                ajax: { url: `/api/v1/biblios/${biblionumber}/item_groups?_per_page=-1` },
2154
            });
2154
            });
2155
2155
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_auth_search.tt (-1 / +1 lines)
Lines 268-274 Link Here
268
            $("#resultst").kohaTable({
268
            $("#resultst").kohaTable({
269
                dom: "t",
269
                dom: "t",
270
                order: [[1, "asc"]],
270
                order: [[1, "asc"]],
271
                paginate: false,
271
                paging: false,
272
            });
272
            });
273
            InitLastAction();
273
            InitLastAction();
274
        });
274
        });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/z3950_search.tt (-1 / +1 lines)
Lines 281-287 Link Here
281
            var thetable = $("#resultst").kohaTable(
281
            var thetable = $("#resultst").kohaTable(
282
                {
282
                {
283
                    columnDefs: [{ targets: [1], type: "nsb-nse" }],
283
                    columnDefs: [{ targets: [1], type: "nsb-nse" }],
284
                    paginate: false,
284
                    paging: false,
285
                    searching: false,
285
                    searching: false,
286
                    info: false,
286
                    info: false,
287
                },
287
                },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-1 / +1 lines)
Lines 362-368 Link Here
362
            $("#checkout_infos").kohaTable({
362
            $("#checkout_infos").kohaTable({
363
                dom: "t",
363
                dom: "t",
364
                order: [],
364
                order: [],
365
                paginate: false,
365
                paging: false,
366
            });
366
            });
367
        });
367
        });
368
        // On-site batch checkout
368
        // On-site batch checkout
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt (-2 / +2 lines)
Lines 1529-1535 Link Here
1529
            var returns_table = $("#checkedintable").kohaTable(
1529
            var returns_table = $("#checkedintable").kohaTable(
1530
                {
1530
                {
1531
                    searching: false,
1531
                    searching: false,
1532
                    paginate: false,
1532
                    paging: false,
1533
                    info: false,
1533
                    info: false,
1534
                    ordering: false,
1534
                    ordering: false,
1535
                    dom: '<"table_controls"B>rt',
1535
                    dom: '<"table_controls"B>rt',
Lines 1713-1719 Link Here
1713
1713
1714
            $("#items-bundle-contents-table").kohaTable({
1714
            $("#items-bundle-contents-table").kohaTable({
1715
                searching: false,
1715
                searching: false,
1716
                paginate: false,
1716
                paging: false,
1717
                info: false,
1717
                info: false,
1718
                order: [
1718
                order: [
1719
                    [1, "asc"],
1719
                    [1, "asc"],
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transfers_to_send.tt (-1 / +1 lines)
Lines 101-107 Link Here
101
            [% FOREACH library IN libraries %]
101
            [% FOREACH library IN libraries %]
102
                $("#transferst[% library.branchcode | html %]").kohaTable({
102
                $("#transferst[% library.branchcode | html %]").kohaTable({
103
                    dom: "t",
103
                    dom: "t",
104
                    paginate: false,
104
                    paging: false,
105
                });
105
                });
106
            [% END %]
106
            [% END %]
107
        });
107
        });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/transferstoreceive.tt (-1 / +1 lines)
Lines 116-122 Link Here
116
            [% FOREACH branchesloo IN branchesloop %]
116
            [% FOREACH branchesloo IN branchesloop %]
117
                $("#transferst[% branchesloo.branchcode | html %]").kohaTable({
117
                $("#transferst[% branchesloo.branchcode | html %]").kohaTable({
118
                    dom: "t",
118
                    dom: "t",
119
                    paginate: false,
119
                    paging: false,
120
                });
120
                });
121
            [% END %]
121
            [% END %]
122
        });
122
        });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt (-1 / +1 lines)
Lines 369-375 Link Here
369
                {
369
                {
370
                    dom: 'B<"clearfix">t',
370
                    dom: 'B<"clearfix">t',
371
                    orderCellsTop: true,
371
                    orderCellsTop: true,
372
                    paginate: false,
372
                    paging: false,
373
                },
373
                },
374
                table_settings
374
                table_settings
375
            );
375
            );
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/purchase-suggestions.tt (-1 / +1 lines)
Lines 136-142 Link Here
136
    <script>
136
    <script>
137
        $(document).ready(function () {
137
        $(document).ready(function () {
138
            $("#suggestions").kohaTable({
138
            $("#suggestions").kohaTable({
139
                paginate: false,
139
                paging: false,
140
                searching: false,
140
                searching: false,
141
                info: false,
141
                info: false,
142
                dom: "t",
142
                dom: "t",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt (-1 / +1 lines)
Lines 106-112 Link Here
106
        $(document).ready(function () {
106
        $(document).ready(function () {
107
            $("#statistics").kohaTable({
107
            $("#statistics").kohaTable({
108
                dom: "t",
108
                dom: "t",
109
                paginate: false,
109
                paging: false,
110
            });
110
            });
111
        });
111
        });
112
    </script>
112
    </script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/update-child.tt (-1 / +1 lines)
Lines 68-74 Link Here
68
            $("#catst").kohaTable({
68
            $("#catst").kohaTable({
69
                dom: "t",
69
                dom: "t",
70
                order: [[2, "asc"]],
70
                order: [[2, "asc"]],
71
                paginate: false,
71
                paging: false,
72
            });
72
            });
73
            $("#updatechildf").validate({
73
            $("#updatechildf").validate({
74
                rules: {
74
                rules: {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/plugins/plugins-home.tt (-1 / +1 lines)
Lines 314-320 Link Here
314
            });
314
            });
315
315
316
            $("#installed_plugins").kohaTable({
316
            $("#installed_plugins").kohaTable({
317
                paginate: false,
317
                paging: false,
318
            });
318
            });
319
        });
319
        });
320
    </script>
320
    </script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt (-1 / +1 lines)
Lines 206-212 Link Here
206
                {
206
                {
207
                    order: [],
207
                    order: [],
208
                    autoWidth: false,
208
                    autoWidth: false,
209
                    paginate: false,
209
                    paging: false,
210
                },
210
                },
211
                table_settings,
211
                table_settings,
212
                "with_filters"
212
                "with_filters"
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemtypes.tt (-1 / +1 lines)
Lines 104-110 Link Here
104
            $(document).ready(function () {
104
            $(document).ready(function () {
105
                $("#itemtypest").kohaTable({
105
                $("#itemtypest").kohaTable({
106
                    dom: "t",
106
                    dom: "t",
107
                    paginate: false,
107
                    paging: false,
108
                });
108
                });
109
            });
109
            });
110
        </script>
110
        </script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt (-1 / +1 lines)
Lines 148-154 Link Here
148
    <script>
148
    <script>
149
        $(document).ready(function () {
149
        $(document).ready(function () {
150
            $("#resulttable").kohaTable({
150
            $("#resulttable").kohaTable({
151
                paginate: false,
151
                paging: false,
152
            });
152
            });
153
        });
153
        });
154
    </script>
154
    </script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt (-2 / +2 lines)
Lines 1436-1442 Link Here
1436
            hold_table_settings = [% TablesSettings.GetTableSettings( 'circ', 'holds', 'patron_holds_table', 'json' ) | $raw %];
1436
            hold_table_settings = [% TablesSettings.GetTableSettings( 'circ', 'holds', 'patron_holds_table', 'json' ) | $raw %];
1437
            $("#patron_holds_table").kohaTable(
1437
            $("#patron_holds_table").kohaTable(
1438
                {
1438
                {
1439
                    bPaginate: false,
1439
                    paging: false,
1440
                    bKohaColumnsUseNames: true,
1440
                    bKohaColumnsUseNames: true,
1441
                },
1441
                },
1442
                hold_table_settings
1442
                hold_table_settings
Lines 1511-1517 Link Here
1511
            [% END %]
1511
            [% END %]
1512
1512
1513
            var my_table = $("#requestspecific").kohaTable({
1513
            var my_table = $("#requestspecific").kohaTable({
1514
                paginate: false,
1514
                paging: false,
1515
                dom: '<"top pager"ilf>t',
1515
                dom: '<"top pager"ilf>t',
1516
            });
1516
            });
1517
1517
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-collection.tt (-1 / +1 lines)
Lines 363-369 Link Here
363
                order: [[0, "desc"]],
363
                order: [[0, "desc"]],
364
                dom: "t",
364
                dom: "t",
365
                autoWidth: false,
365
                autoWidth: false,
366
                paginate: false,
366
                paging: false,
367
                info: false,
367
                info: false,
368
                searching: false,
368
                searching: false,
369
            });
369
            });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/subscription-detail.tt (-1 / +1 lines)
Lines 472-478 Link Here
472
                        { visible: false, targets: ["NoVisible"] },
472
                        { visible: false, targets: ["NoVisible"] },
473
                        { orderable: false, targets: ["_all"] },
473
                        { orderable: false, targets: ["_all"] },
474
                    ],
474
                    ],
475
                    paginate: false,
475
                    paging: false,
476
                    autoWidth: false,
476
                    autoWidth: false,
477
                    ordering: false,
477
                    ordering: false,
478
                },
478
                },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt (-1 / +1 lines)
Lines 69-75 Link Here
69
        $(document).ready(function () {
69
        $(document).ready(function () {
70
            $("#files").kohaTable({
70
            $("#files").kohaTable({
71
                columnDefs: [{ targets: [-1], orderSequence: ["desc", "asc"], searchable: false }],
71
                columnDefs: [{ targets: [-1], orderSequence: ["desc", "asc"], searchable: false }],
72
                paginate: false,
72
                paging: false,
73
            });
73
            });
74
        });
74
        });
75
    </script>
75
    </script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_delete_records.tt (-2 / +2 lines)
Lines 352-358 Link Here
352
              ],
352
              ],
353
              dom: "t",
353
              dom: "t",
354
              order: [],
354
              order: [],
355
              paginate: false,
355
              paging: false,
356
          });
356
          });
357
357
358
          $("#authorities").kohaTable({
358
          $("#authorities").kohaTable({
Lines 361-367 Link Here
361
              ],
361
              ],
362
              dom: "t",
362
              dom: "t",
363
              order: [],
363
              order: [],
364
              paginate: false,
364
              paging: false,
365
          });
365
          });
366
366
367
          $("#selectrecords").on("submit",function(){
367
          $("#selectrecords").on("submit",function(){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_extend_due_dates.tt (-2 / +2 lines)
Lines 271-284 Link Here
271
                columnDefs: [{ targets: [1], type: "num-html" }],
271
                columnDefs: [{ targets: [1], type: "num-html" }],
272
                dom: "t",
272
                dom: "t",
273
                order: [],
273
                order: [],
274
                paginate: false,
274
                paging: false,
275
            });
275
            });
276
276
277
            $("#checkouts_result").kohaTable({
277
            $("#checkouts_result").kohaTable({
278
                columnDefs: [{ targets: [1], type: "num-html" }],
278
                columnDefs: [{ targets: [1], type: "num-html" }],
279
                dom: "t",
279
                dom: "t",
280
                order: [],
280
                order: [],
281
                paginate: false,
281
                paging: false,
282
            });
282
            });
283
283
284
            $("#extend_due_dates_form").on("submit", function (e) {
284
            $("#extend_due_dates_form").on("submit", function (e) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/batch_record_modification.tt (-2 / +2 lines)
Lines 359-365 Link Here
359
                ],
359
                ],
360
                dom: "t",
360
                dom: "t",
361
                order: [],
361
                order: [],
362
                paginate: false,
362
                paging: false,
363
            });
363
            });
364
364
365
            $("#authorities").kohaTable({
365
            $("#authorities").kohaTable({
Lines 368-374 Link Here
368
                ],
368
                ],
369
                dom: "t",
369
                dom: "t",
370
                order: [],
370
                order: [],
371
                paginate: false,
371
                paging: false,
372
            });
372
            });
373
373
374
            $("#mainformsubmit").click(function() {
374
            $("#mainformsubmit").click(function() {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/holidays.tt (-2 / +2 lines)
Lines 610-621 Link Here
610
            });
610
            });
611
            $("#holidayweeklyrepeatable").kohaTable({
611
            $("#holidayweeklyrepeatable").kohaTable({
612
                dom: "t",
612
                dom: "t",
613
                paginate: false,
613
                paging: false,
614
            });
614
            });
615
615
616
            let dt_params = {
616
            let dt_params = {
617
                dom: "t",
617
                dom: "t",
618
                paginate: false,
618
                paging: false,
619
                createdRow: function (row, data, dataIndex) {
619
                createdRow: function (row, data, dataIndex) {
620
                    var holiday = $(row).data("date");
620
                    var holiday = $(row).data("date");
621
                    if (holiday < datestring) {
621
                    if (holiday < datestring) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt (-1 / +1 lines)
Lines 190-196 Link Here
190
            }
190
            }
191
            $(".overduerulest").kohaTable({
191
            $(".overduerulest").kohaTable({
192
                dom: '<"top pager"f>rt<"clear">',
192
                dom: '<"top pager"f>rt<"clear">',
193
                paginate: false,
193
                paging: false,
194
            });
194
            });
195
195
196
            $("#overduerulesf").on("submit", function (e) {
196
            $("#overduerulesf").on("submit", function (e) {
(-)a/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js (-2 / +1 lines)
Lines 31-37 $(document).ready(function () { Link Here
31
    });
31
    });
32
    $("#table_marcsubfieldstructure").kohaTable({
32
    $("#table_marcsubfieldstructure").kohaTable({
33
        order: [],
33
        order: [],
34
        paginate: false,
34
        paging: false,
35
    });
35
    });
36
36
37
    selectBsTabByHash("subfieldtabs");
37
    selectBsTabByHash("subfieldtabs");
38
- 

Return to bug 38984