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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/basketgroup.tt (-2 lines)
Lines 412-418 Link Here
412
            [% ELSE %]
412
            [% ELSE %]
413
                grouped = $("#grouped").kohaTable({
413
                grouped = $("#grouped").kohaTable({
414
                    dom: "t",
414
                    dom: "t",
415
                    columnDefs: [{ orderable: false, targets: ["NoSort"] }],
416
                    autoWidth: false,
415
                    autoWidth: false,
417
                    language: {
416
                    language: {
418
                        emptyTable: _("There are no baskets in this group"),
417
                        emptyTable: _("There are no baskets in this group"),
Lines 420-426 Link Here
420
                });
419
                });
421
                ungrouped = $("#ungrouped").kohaTable({
420
                ungrouped = $("#ungrouped").kohaTable({
422
                    dom: "t",
421
                    dom: "t",
423
                    columnDefs: [{ orderable: false, targets: ["NoSort"] }],
424
                    autoWidth: false,
422
                    autoWidth: false,
425
                    language: {
423
                    language: {
426
                        emptyTable: _("There are no ungrouped baskets"),
424
                        emptyTable: _("There are no ungrouped baskets"),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt (-1 lines)
Lines 137-143 Link Here
137
        $(document).ready(function() {
137
        $(document).ready(function() {
138
            $("#srlt").kohaTable({
138
            $("#srlt").kohaTable({
139
                columnDefs: [
139
                columnDefs: [
140
                    { orderable: false, searchable: false, targets: ["NoSort"] },
141
                    { type: "anti-the", targets: ["anti-the"] },
140
                    { type: "anti-the", targets: ["anti-the"] },
142
                ],
141
                ],
143
                pagingType: "full",
142
                pagingType: "full",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/supplier.tt (-3 lines)
Lines 691-699 Link Here
691
691
692
         $(document).ready(function() {
692
         $(document).ready(function() {
693
            var contractst = $("#contractst").kohaTable({
693
            var contractst = $("#contractst").kohaTable({
694
                columnDefs: [
695
                    { orderable: false, searchable:  false, targets: [ 'NoSort' ] }
696
                ],
697
                dom: 't'
694
                dom: 't'
698
            } );
695
            } );
699
            $('body').on('click', '.delete-contact', null, delete_contact);
696
            $('body').on('click', '.delete-contact', null, delete_contact);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/uncertainprice.tt (-1 lines)
Lines 185-191 Link Here
185
    <script>
185
    <script>
186
        $(document).ready(function() {
186
        $(document).ready(function() {
187
            var uncertainpricet = $("#uncertainpricet").kohaTable({
187
            var uncertainpricet = $("#uncertainpricet").kohaTable({
188
                columnDefs: [{ orderable: false, searchable: false, targets: ["NoSort"] }],
189
                pagingType: "full",
188
                pagingType: "full",
190
            });
189
            });
191
            $(".check_uncertain").on("change",function(){
190
            $(".check_uncertain").on("change",function(){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt (-1 lines)
Lines 413-419 Link Here
413
    <script>
413
    <script>
414
        $(document).ready(function() {
414
        $(document).ready(function() {
415
            $("#table_authsubfieldstructure").kohaTable({
415
            $("#table_authsubfieldstructure").kohaTable({
416
                columnDefs: [{ orderable: false, targets: ["NoSort"] }],
417
                aaSorting: [],
416
                aaSorting: [],
418
                paginate: false,
417
                paginate: false,
419
            });
418
            });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/localization.tt (-1 lines)
Lines 186-192 Link Here
186
186
187
            var table = $("#localization").kohaTable({
187
            var table = $("#localization").kohaTable({
188
                dom: "t",
188
                dom: "t",
189
                columnDefs: [{ orderable: false, targets: ["NoSort"] }],
190
                paginate: false,
189
                paginate: false,
191
                autoWidth: false,
190
                autoWidth: false,
192
            });
191
            });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/oai_servers.tt (-1 lines)
Lines 223-229 Link Here
223
        [% ELSE %]
223
        [% ELSE %]
224
            $(document).ready(function() {
224
            $(document).ready(function() {
225
                $("#serverst").kohaTable({
225
                $("#serverst").kohaTable({
226
                    columnDefs: [{ orderable: false, targets: ["NoSort"] }],
227
                    pagingType: "full",
226
                    pagingType: "full",
228
                });
227
                });
229
                $(".delete").on("click",function(e){
228
                $(".delete").on("click",function(e){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 lines)
Lines 2044-2050 Link Here
2044
            [% IF suggestions.count %]
2044
            [% IF suggestions.count %]
2045
                $("#suggestions").kohaTable({
2045
                $("#suggestions").kohaTable({
2046
                    columnDefs: [
2046
                    columnDefs: [
2047
                        { orderable: false, searchable: false, targets: ["NoSort"] },
2048
                        { type: "anti-the", targets: ["anti-the"] },
2047
                        { type: "anti-the", targets: ["anti-the"] },
2049
                    ],
2048
                    ],
2050
                    pagingType: "full",
2049
                    pagingType: "full",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt (-1 lines)
Lines 146-152 Link Here
146
            $("#notestable").kohaTable({
146
            $("#notestable").kohaTable({
147
                order: [[1, "asc"]],
147
                order: [[1, "asc"]],
148
                columnDefs: [
148
                columnDefs: [
149
                    { orderable: false, searchable: false, targets: ["NoSort"] },
150
                    { type: "anti-the", targets: ["anti-the"] },
149
                    { type: "anti-the", targets: ["anti-the"] },
151
                ],
150
                ],
152
                pagingType: "full",
151
                pagingType: "full",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-1 lines)
Lines 368-374 Link Here
368
                dom: "t",
368
                dom: "t",
369
                order: [],
369
                order: [],
370
                columnDefs: [
370
                columnDefs: [
371
                    { orderable: false, searchable: false, targets: ["NoSort"] },
372
                    { type: "anti-the", targets: ["anti-the"] },
371
                    { type: "anti-the", targets: ["anti-the"] },
373
                ],
372
                ],
374
                paginate: false,
373
                paginate: false,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-3 lines)
Lines 333-341 Link Here
333
            var holdst = $("#holdst").kohaTable(
333
            var holdst = $("#holdst").kohaTable(
334
                {
334
                {
335
                    pagingType: "full_numbers",
335
                    pagingType: "full_numbers",
336
                    columnDefs: [
337
                        { orderable: false, searchable: false, targets: ["NoSort"] },
338
                    ],
339
                },
336
                },
340
                table_settings,
337
                table_settings,
341
                true,
338
                true,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-clubs-tab.tt (-1 lines)
Lines 68-74 Link Here
68
68
69
<script>
69
<script>
70
var clubs_dt_params = {
70
var clubs_dt_params = {
71
    columnDefs: [{ orderable: false, targets: ["NoSort"] }],
72
    paginate: true,
71
    paginate: true,
73
};
72
};
74
$("#table_clubnoenrollmemnts").kohaTable(clubs_dt_params);
73
$("#table_clubnoenrollmemnts").kohaTable(clubs_dt_params);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt (-1 lines)
Lines 159-165 Link Here
159
159
160
            $("#patron-lists-table").kohaTable({
160
            $("#patron-lists-table").kohaTable({
161
                autoWidth: false,
161
                autoWidth: false,
162
                columnDefs: [{ orderable: false, searchable: false, targets: ["NoSort"] }],
163
                pagingType: "full",
162
                pagingType: "full",
164
            });
163
            });
165
            $(".delete_patron").on("click", function(){
164
            $(".delete_patron").on("click", function(){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/patron-lists-tab.tt (-1 lines)
Lines 105-111 Link Here
105
105
106
<script>
106
<script>
107
    var patron_lists_dt_params = {
107
    var patron_lists_dt_params = {
108
        columnDefs: [{ orderable: false, bSearchable: false, targets: ["NoSort"] }],
109
        sPaginationType: "full",
108
        sPaginationType: "full",
110
    };
109
    };
111
    $("#table_listnopatron").kohaTable(patron_lists_dt_params);
110
    $("#table_listnopatron").kohaTable(patron_lists_dt_params);
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/guided_reports_start.tt (-1 lines)
Lines 2413-2419 Link Here
2413
                                { "width": "35%", "targets": 1 }
2413
                                { "width": "35%", "targets": 1 }
2414
                            ],
2414
                            ],
2415
                            "columnDefs": [
2415
                            "columnDefs": [
2416
                                { "orderable": false, "searchable":  false, "targets": [ 'NoSort' ] },
2417
                                { "type": "anti-the", "targets":  [ 'anti-the'] }
2416
                                { "type": "anti-the", "targets":  [ 'anti-the'] }
2418
                            ]
2417
                            ]
2419
                        });
2418
                        });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt (-3 lines)
Lines 219-227 Link Here
219
            var lostitems_table = $("#lostitems-table").kohaTable(
219
            var lostitems_table = $("#lostitems-table").kohaTable(
220
                {
220
                {
221
                    order: [],
221
                    order: [],
222
                    columnDefs: [
223
                        { orderable: false, searchable: false, targets: ["NoSort"] },
224
                    ],
225
                    autoWidth: false,
222
                    autoWidth: false,
226
                    paginate: false,
223
                    paginate: false,
227
                },
224
                },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt (-3 lines)
Lines 350-356 Link Here
350
                pagingType: "full",
350
                pagingType: "full",
351
                order: [[2, "asc"]],
351
                order: [[2, "asc"]],
352
                columnDefs: [
352
                columnDefs: [
353
                    { orderable: false, searchable: false, targets: ["NoSort"] },
354
                    { type: "anti-the", targets: ["anti-the"] },
353
                    { type: "anti-the", targets: ["anti-the"] },
355
                ],
354
                ],
356
            });
355
            });
Lines 360-366 Link Here
360
                order: [[2, "asc"]],
359
                order: [[2, "asc"]],
361
                pagingType: "full",
360
                pagingType: "full",
362
                columnDefs: [
361
                columnDefs: [
363
                    { orderable: false, targets: ["NoSort"] },
364
                    { type: "anti-the", targets: ["anti-the"] },
362
                    { type: "anti-the", targets: ["anti-the"] },
365
                ],
363
                ],
366
            });
364
            });
Lines 368-374 Link Here
368
            var manarlt = $("#mana_results_datatable").kohaTable({
366
            var manarlt = $("#mana_results_datatable").kohaTable({
369
                pagingType: "full",
367
                pagingType: "full",
370
                columnDefs: [
368
                columnDefs: [
371
                    { orderable: false, searchable: false, targets: ["NoSort"] },
372
                    { type: "anti-the", targets: ["anti-the"] },
369
                    { type: "anti-the", targets: ["anti-the"] },
373
                ],
370
                ],
374
            });
371
            });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt (-1 lines)
Lines 607-613 Link Here
607
                var table = $("#table_additional_contents").kohaTable({
607
                var table = $("#table_additional_contents").kohaTable({
608
                    order: [[4, "desc"]],
608
                    order: [[4, "desc"]],
609
                    columnDefs: [
609
                    columnDefs: [
610
                        { orderable: false, searchable: false, targets: ["NoSort"] },
611
                        { type: "anti-the", targets: ["anti-the"] },
610
                        { type: "anti-the", targets: ["anti-the"] },
612
                    ],
611
                    ],
613
                    pagingType: "full_numbers",
612
                    pagingType: "full_numbers",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt (-1 lines)
Lines 193-199 Link Here
193
                $("#rulestabs a:first").tab("show");
193
                $("#rulestabs a:first").tab("show");
194
            }
194
            }
195
            $(".overduerulest").kohaTable({
195
            $(".overduerulest").kohaTable({
196
                columnDefs: [{ targets: ["NoSort"], orderable: false, searchable: false }],
197
                dom: '<"top pager"f>rt<"clear">',
196
                dom: '<"top pager"f>rt<"clear">',
198
                paginate: false,
197
                paginate: false,
199
            });
198
            });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt (-1 lines)
Lines 152-158 Link Here
152
            $("#problemreportstable").kohaTable({
152
            $("#problemreportstable").kohaTable({
153
                order: [[1, "asc"]],
153
                order: [[1, "asc"]],
154
                columnDefs: [
154
                columnDefs: [
155
                    { orderable: false, searchable: false, targets: ["NoSort"] },
156
                    { type: "anti-the", targets: ["anti-the"] },
155
                    { type: "anti-the", targets: ["anti-the"] },
157
                ],
156
                ],
158
                pagingType: "full",
157
                pagingType: "full",
(-)a/koha-tmpl/intranet-tmpl/prog/js/addorderiso2709.js (-1 lines)
Lines 4-10 $(document).ready(function() { Link Here
4
    $("#Aform").preventDoubleFormSubmit();
4
    $("#Aform").preventDoubleFormSubmit();
5
    $("#files").kohaTable({
5
    $("#files").kohaTable({
6
        columnDefs: [
6
        columnDefs: [
7
            { orderable: false, searchable: false, targets: ["NoSort"] },
8
            { type: "anti-the", targets: ["anti-the"] },
7
            { type: "anti-the", targets: ["anti-the"] },
9
        ],
8
        ],
10
        pagingType: "full",
9
        pagingType: "full",
(-)a/koha-tmpl/intranet-tmpl/prog/js/cart.js (-1 lines)
Lines 86-92 $(document).ready(function(){ Link Here
86
    $("#itemst").kohaTable({
86
    $("#itemst").kohaTable({
87
        dom: "t",
87
        dom: "t",
88
        columnDefs: [
88
        columnDefs: [
89
            { orderable: false, searchable: false, targets: ["NoSort"] },
90
            { type: "anti-the", targets: ["anti-the"] },
89
            { type: "anti-the", targets: ["anti-the"] },
91
            { type: "callnumbers", targets: ["callnumbers"] },
90
            { type: "callnumbers", targets: ["callnumbers"] },
92
        ],
91
        ],
(-)a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js (-1 lines)
Lines 1032-1038 $(document).ready(function() { Link Here
1032
                "dom":  "rt",
1032
                "dom":  "rt",
1033
                "order":  [],
1033
                "order":  [],
1034
                "columnDefs":  [
1034
                "columnDefs":  [
1035
                    { "orderable":  false, "searchable":  false, "targets":  ['NoSort'] },
1036
                    { "type":  "anti-the", "targets":  ["anti-the"] },
1035
                    { "type":  "anti-the", "targets":  ["anti-the"] },
1037
                ],
1036
                ],
1038
                "columns":  [
1037
                "columns":  [
(-)a/koha-tmpl/intranet-tmpl/prog/js/elasticsearch-mappings.js (-2 lines)
Lines 38-44 function tableInit( oldtabid, newtabid ) { Link Here
38
    }
38
    }
39
39
40
    $("#" + newtabid + "_table").kohaTable({
40
    $("#" + newtabid + "_table").kohaTable({
41
        columnDefs: [{ orderable: false, searchable: false, targets: ["NoSort"] }],
42
        paging: false,
41
        paging: false,
43
        autoWidth: false,
42
        autoWidth: false,
44
    });
43
    });
Lines 110-116 $(document).ready(function () { Link Here
110
    $("#facet_biblios_table").DataTable(
109
    $("#facet_biblios_table").DataTable(
111
        $.extend(true, {}, dataTablesDefaults, {
110
        $.extend(true, {}, dataTablesDefaults, {
112
            "columnDefs": [
111
            "columnDefs": [
113
                { "orderable": false, "targets": [ "NoSort" ] },
114
                { "searchable": false, "visible": false, "targets": 0 }
112
                { "searchable": false, "visible": false, "targets": 0 }
115
            ],
113
            ],
116
            "dom": "t",
114
            "dom": "t",
(-)a/koha-tmpl/intranet-tmpl/prog/js/marc_subfields_structure.js (-1 lines)
Lines 30-36 $(document).ready(function() { Link Here
30
        populateHiddenCheckboxes($(this).attr('id').split('-')[1]);
30
        populateHiddenCheckboxes($(this).attr('id').split('-')[1]);
31
    });
31
    });
32
    $("#table_marcsubfieldstructure").kohaTable({
32
    $("#table_marcsubfieldstructure").kohaTable({
33
        columnDefs: [{ sortable: false, targets: ["NoSort"] }],
34
        order: [],
33
        order: [],
35
        paginate: false,
34
        paginate: false,
36
    });
35
    });
(-)a/koha-tmpl/intranet-tmpl/prog/js/pages/stockrotation.js (-2 lines)
Lines 70-76 $(document).ready(function() { Link Here
70
    $("#stock_rotation_manage_items").kohaTable(
70
    $("#stock_rotation_manage_items").kohaTable(
71
        {
71
        {
72
            columnDefs: [
72
            columnDefs: [
73
                { orderable: false, searchable: false, targets: ["NoSort"] },
74
                { type: "anti-the", targets: ["anti-the"] },
73
                { type: "anti-the", targets: ["anti-the"] },
75
            ],
74
            ],
76
            pagingType: "full",
75
            pagingType: "full",
Lines 82-88 $(document).ready(function() { Link Here
82
    $("#stock_rotation").kohaTable(
81
    $("#stock_rotation").kohaTable(
83
        {
82
        {
84
            columnDefs: [
83
            columnDefs: [
85
                { orderable: false, searchable: false, targets: ["NoSort"] },
86
                { type: "anti-the", targets: ["anti-the"] },
84
                { type: "anti-the", targets: ["anti-the"] },
87
            ],
85
            ],
88
            pagingType: "full",
86
            pagingType: "full",
(-)a/koha-tmpl/intranet-tmpl/prog/js/pages/tags-review.js (-1 lines)
Lines 60-66 var success_test_call = function() { Link Here
60
$(document).ready(function() {
60
$(document).ready(function() {
61
    $("#tagst").kohaTable({
61
    $("#tagst").kohaTable({
62
        columnDefs: [
62
        columnDefs: [
63
            { orderable: false, searchable: false, targets: ["NoSort"] },
64
            { type: "anti-the", targets: ["anti-the"] },
63
            { type: "anti-the", targets: ["anti-the"] },
65
        ],
64
        ],
66
        order: [[2, "desc"]],
65
        order: [[2, "desc"]],
(-)a/koha-tmpl/intranet-tmpl/prog/js/subscription-add.js (-1 lines)
Lines 438-444 function mana_search() { Link Here
438
                    { "width": "35%", "targets": 1 }
438
                    { "width": "35%", "targets": 1 }
439
                ],
439
                ],
440
                "columnDefs":  [
440
                "columnDefs":  [
441
                    { "orderable":  false, "searchable":  false, "targets":  [ 'NoSort' ] },
442
                    { "type":  "anti-the", "targets":  [ 'anti-the'] }
441
                    { "type":  "anti-the", "targets":  [ 'anti-the'] }
443
                ]
442
                ]
444
            });
443
            });
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/clubs/clubs-tab.tt (-1 lines)
Lines 113-119 function cancelEnrollment( id ) { Link Here
113
                details: { type: "column", target: -1 },
113
                details: { type: "column", target: -1 },
114
            },
114
            },
115
            columnDefs: [
115
            columnDefs: [
116
                { orderable: false, searchable: false, targets: ["NoSort"] },
117
                { className: "dtr-control", orderable: false, targets: -1 },
116
                { className: "dtr-control", orderable: false, targets: -1 },
118
            ],
117
            ],
119
        });
118
        });
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-topissues.tt (-2 lines)
Lines 148-154 Link Here
148
            $("#topissuest").kohaTable({
148
            $("#topissuest").kohaTable({
149
                sorting: [[3, "desc"]],
149
                sorting: [[3, "desc"]],
150
                columnDefs: [
150
                columnDefs: [
151
                    { orderable: false, searchable: false, targets: ["NoSort"] },
152
                    { type: "anti-the", targets: ["anti-the"] },
151
                    { type: "anti-the", targets: ["anti-the"] },
153
                    { className: "dtr-control", orderable: false, targets: -1 },
152
                    { className: "dtr-control", orderable: false, targets: -1 },
154
                ],
153
                ],
155
- 

Return to bug 38984