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 411-417 Link Here
411
            [% ELSE %]
411
            [% ELSE %]
412
                grouped = $("#grouped").kohaTable({
412
                grouped = $("#grouped").kohaTable({
413
                    dom: "t",
413
                    dom: "t",
414
                    columnDefs: [{ orderable: false, targets: ["NoSort"] }],
415
                    autoWidth: false,
414
                    autoWidth: false,
416
                    language: {
415
                    language: {
417
                        emptyTable: _("There are no baskets in this group"),
416
                        emptyTable: _("There are no baskets in this group"),
Lines 419-425 Link Here
419
                });
418
                });
420
                ungrouped = $("#ungrouped").kohaTable({
419
                ungrouped = $("#ungrouped").kohaTable({
421
                    dom: "t",
420
                    dom: "t",
422
                    columnDefs: [{ orderable: false, targets: ["NoSort"] }],
423
                    autoWidth: false,
421
                    autoWidth: false,
424
                    language: {
422
                    language: {
425
                        emptyTable: _("There are no ungrouped baskets"),
423
                        emptyTable: _("There are no ungrouped baskets"),
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/newordersubscription.tt (-1 lines)
Lines 136-142 Link Here
136
        $(document).ready(function() {
136
        $(document).ready(function() {
137
            $("#srlt").kohaTable({
137
            $("#srlt").kohaTable({
138
                columnDefs: [
138
                columnDefs: [
139
                    { orderable: false, searchable: false, targets: ["NoSort"] },
140
                    { type: "anti-the", targets: ["anti-the"] },
139
                    { type: "anti-the", targets: ["anti-the"] },
141
                ],
140
                ],
142
                pagingType: "full",
141
                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 184-190 Link Here
184
    <script>
184
    <script>
185
        $(document).ready(function() {
185
        $(document).ready(function() {
186
            var uncertainpricet = $("#uncertainpricet").kohaTable({
186
            var uncertainpricet = $("#uncertainpricet").kohaTable({
187
                columnDefs: [{ orderable: false, searchable: false, targets: ["NoSort"] }],
188
                pagingType: "full",
187
                pagingType: "full",
189
            });
188
            });
190
            $(".check_uncertain").on("change",function(){
189
            $(".check_uncertain").on("change",function(){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/auth_subfields_structure.tt (-1 lines)
Lines 412-418 Link Here
412
    <script>
412
    <script>
413
        $(document).ready(function() {
413
        $(document).ready(function() {
414
            $("#table_authsubfieldstructure").kohaTable({
414
            $("#table_authsubfieldstructure").kohaTable({
415
                columnDefs: [{ orderable: false, targets: ["NoSort"] }],
416
                aaSorting: [],
415
                aaSorting: [],
417
                paginate: false,
416
                paginate: false,
418
            });
417
            });
(-)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 222-228 Link Here
222
        [% ELSE %]
222
        [% ELSE %]
223
            $(document).ready(function() {
223
            $(document).ready(function() {
224
                $("#serverst").kohaTable({
224
                $("#serverst").kohaTable({
225
                    columnDefs: [{ orderable: false, targets: ["NoSort"] }],
226
                    pagingType: "full",
225
                    pagingType: "full",
227
                });
226
                });
228
                $(".delete").on("click",function(e){
227
                $(".delete").on("click",function(e){
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 lines)
Lines 2036-2042 Link Here
2036
            [% IF suggestions.count %]
2036
            [% IF suggestions.count %]
2037
                $("#suggestions").kohaTable({
2037
                $("#suggestions").kohaTable({
2038
                    columnDefs: [
2038
                    columnDefs: [
2039
                        { orderable: false, searchable: false, targets: ["NoSort"] },
2040
                        { type: "anti-the", targets: ["anti-the"] },
2039
                        { type: "anti-the", targets: ["anti-the"] },
2041
                    ],
2040
                    ],
2042
                    pagingType: "full",
2041
                    pagingType: "full",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/checkout-notes.tt (-1 lines)
Lines 145-151 Link Here
145
            $("#notestable").kohaTable({
145
            $("#notestable").kohaTable({
146
                order: [[1, "asc"]],
146
                order: [[1, "asc"]],
147
                columnDefs: [
147
                columnDefs: [
148
                    { orderable: false, searchable: false, targets: ["NoSort"] },
149
                    { type: "anti-the", targets: ["anti-the"] },
148
                    { type: "anti-the", targets: ["anti-the"] },
150
                ],
149
                ],
151
                pagingType: "full",
150
                pagingType: "full",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt (-1 lines)
Lines 367-373 Link Here
367
                dom: "t",
367
                dom: "t",
368
                order: [],
368
                order: [],
369
                columnDefs: [
369
                columnDefs: [
370
                    { orderable: false, searchable: false, targets: ["NoSort"] },
371
                    { type: "anti-the", targets: ["anti-the"] },
370
                    { type: "anti-the", targets: ["anti-the"] },
372
                ],
371
                ],
373
                paginate: false,
372
                paginate: false,
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt (-3 lines)
Lines 332-340 Link Here
332
            var holdst = $("#holdst").kohaTable(
332
            var holdst = $("#holdst").kohaTable(
333
                {
333
                {
334
                    pagingType: "full_numbers",
334
                    pagingType: "full_numbers",
335
                    columnDefs: [
336
                        { orderable: false, searchable: false, targets: ["NoSort"] },
337
                    ],
338
                },
335
                },
339
                table_settings,
336
                table_settings,
340
                true,
337
                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 158-164 Link Here
158
158
159
            $("#patron-lists-table").kohaTable({
159
            $("#patron-lists-table").kohaTable({
160
                autoWidth: false,
160
                autoWidth: false,
161
                columnDefs: [{ orderable: false, searchable: false, targets: ["NoSort"] }],
162
                pagingType: "full",
161
                pagingType: "full",
163
            });
162
            });
164
            $(".delete_patron").on("click", function(){
163
            $(".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 2412-2418 Link Here
2412
                                { "width": "35%", "targets": 1 }
2412
                                { "width": "35%", "targets": 1 }
2413
                            ],
2413
                            ],
2414
                            "columnDefs": [
2414
                            "columnDefs": [
2415
                                { "orderable": false, "searchable":  false, "targets": [ 'NoSort' ] },
2416
                                { "type": "anti-the", "targets":  [ 'anti-the'] }
2415
                                { "type": "anti-the", "targets":  [ 'anti-the'] }
2417
                            ]
2416
                            ]
2418
                        });
2417
                        });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/itemslost.tt (-3 lines)
Lines 218-226 Link Here
218
            var lostitems_table = $("#lostitems-table").kohaTable(
218
            var lostitems_table = $("#lostitems-table").kohaTable(
219
                {
219
                {
220
                    order: [],
220
                    order: [],
221
                    columnDefs: [
222
                        { orderable: false, searchable: false, targets: ["NoSort"] },
223
                    ],
224
                    autoWidth: false,
221
                    autoWidth: false,
225
                    paginate: false,
222
                    paginate: false,
226
                },
223
                },
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/serials-search.tt (-3 lines)
Lines 349-355 Link Here
349
                pagingType: "full",
349
                pagingType: "full",
350
                order: [[2, "asc"]],
350
                order: [[2, "asc"]],
351
                columnDefs: [
351
                columnDefs: [
352
                    { orderable: false, searchable: false, targets: ["NoSort"] },
353
                    { type: "anti-the", targets: ["anti-the"] },
352
                    { type: "anti-the", targets: ["anti-the"] },
354
                ],
353
                ],
355
            });
354
            });
Lines 359-365 Link Here
359
                order: [[2, "asc"]],
358
                order: [[2, "asc"]],
360
                pagingType: "full",
359
                pagingType: "full",
361
                columnDefs: [
360
                columnDefs: [
362
                    { orderable: false, targets: ["NoSort"] },
363
                    { type: "anti-the", targets: ["anti-the"] },
361
                    { type: "anti-the", targets: ["anti-the"] },
364
                ],
362
                ],
365
            });
363
            });
Lines 367-373 Link Here
367
            var manarlt = $("#mana_results_datatable").kohaTable({
365
            var manarlt = $("#mana_results_datatable").kohaTable({
368
                pagingType: "full",
366
                pagingType: "full",
369
                columnDefs: [
367
                columnDefs: [
370
                    { orderable: false, searchable: false, targets: ["NoSort"] },
371
                    { type: "anti-the", targets: ["anti-the"] },
368
                    { type: "anti-the", targets: ["anti-the"] },
372
                ],
369
                ],
373
            });
370
            });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/additional-contents.tt (-1 lines)
Lines 606-612 Link Here
606
                var table = $("#table_additional_contents").kohaTable({
606
                var table = $("#table_additional_contents").kohaTable({
607
                    order: [[4, "desc"]],
607
                    order: [[4, "desc"]],
608
                    columnDefs: [
608
                    columnDefs: [
609
                        { orderable: false, searchable: false, targets: ["NoSort"] },
610
                        { type: "anti-the", targets: ["anti-the"] },
609
                        { type: "anti-the", targets: ["anti-the"] },
611
                    ],
610
                    ],
612
                    pagingType: "full_numbers",
611
                    pagingType: "full_numbers",
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/overduerules.tt (-1 lines)
Lines 192-198 Link Here
192
                $("#rulestabs a:first").tab("show");
192
                $("#rulestabs a:first").tab("show");
193
            }
193
            }
194
            $(".overduerulest").kohaTable({
194
            $(".overduerulest").kohaTable({
195
                columnDefs: [{ targets: ["NoSort"], orderable: false, searchable: false }],
196
                dom: '<"top pager"f>rt<"clear">',
195
                dom: '<"top pager"f>rt<"clear">',
197
                paginate: false,
196
                paginate: false,
198
            });
197
            });
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt (-1 lines)
Lines 151-157 Link Here
151
            $("#problemreportstable").kohaTable({
151
            $("#problemreportstable").kohaTable({
152
                order: [[1, "asc"]],
152
                order: [[1, "asc"]],
153
                columnDefs: [
153
                columnDefs: [
154
                    { orderable: false, searchable: false, targets: ["NoSort"] },
155
                    { type: "anti-the", targets: ["anti-the"] },
154
                    { type: "anti-the", targets: ["anti-the"] },
156
                ],
155
                ],
157
                pagingType: "full",
156
                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