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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/access_files.tt (-2 / +1 lines)
Lines 64-71 Link Here
64
        $(document).ready(function() {
64
        $(document).ready(function() {
65
            $("#files").dataTable($.extend(true, {}, dataTablesDefaults, {
65
            $("#files").dataTable($.extend(true, {}, dataTablesDefaults, {
66
                "aoColumnDefs": [
66
                "aoColumnDefs": [
67
                    { "aTargets": [ -1 ], "asSorting" : [ "desc", "asc" ], "bSearchable": false },
67
                    { "aTargets": [ -1 ], "asSorting" : [ "desc", "asc" ], "bSearchable": false }
68
                    { "sType": "title-string", "aTargets" : [ "title-string" ] }
69
                ],
68
                ],
70
                "bPaginate": false
69
                "bPaginate": false
71
            }));
70
            }));
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/modborrowers.tt (-6 / +1 lines)
Lines 344-357 Link Here
344
            [% IF borrowers %]
344
            [% IF borrowers %]
345
                $("#borrowerst").dataTable($.extend(true, {}, dataTablesDefaults, {
345
                $("#borrowerst").dataTable($.extend(true, {}, dataTablesDefaults, {
346
                    "sDom": 't',
346
                    "sDom": 't',
347
                    [% IF ( op == 'show_results' ) %]
347
                    [% UNLESS ( op == 'show_results' ) %]
348
                        "aoColumnDefs": [
349
                            { 'sType': "title-string", 'aTargets' : [ 'title-string'] }
350
                        ],
351
                    [% ELSE %]
352
                        "aoColumnDefs": [
348
                        "aoColumnDefs": [
353
                            { "aTargets": [ 0 ], "bSortable": false, "bSearchable": false },
349
                            { "aTargets": [ 0 ], "bSortable": false, "bSearchable": false },
354
                            { 'sType': "title-string", 'aTargets' : [ 'title-string'] }
355
                        ],
350
                        ],
356
                    [% END %]
351
                    [% END %]
357
                    "bPaginate": false
352
                    "bPaginate": false
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/problem-reports.tt (-1 lines)
Lines 138-144 Link Here
138
                "order": [[ 1, "asc" ]],
138
                "order": [[ 1, "asc" ]],
139
                "aoColumnDefs": [
139
                "aoColumnDefs": [
140
                    { "orderable": false, "searchable": false, 'targets': [ 'NoSort' ] },
140
                    { "orderable": false, "searchable": false, 'targets': [ 'NoSort' ] },
141
                    { "type": "title-string", "targets" : [ "title-string" ] },
142
                    { "type": "anti-the", "targets": [ "anti-the" ] }
141
                    { "type": "anti-the", "targets": [ "anti-the" ] }
143
                ],
142
                ],
144
                "pagingType": "full"
143
                "pagingType": "full"
(-)a/koha-tmpl/intranet-tmpl/prog/js/pages/tags-review.js (-3 / +1 lines)
Lines 62-69 $(document).ready(function() { Link Here
62
    $("#tagst").dataTable($.extend(true, {}, dataTablesDefaults, {
62
    $("#tagst").dataTable($.extend(true, {}, dataTablesDefaults, {
63
        "aoColumnDefs": [
63
        "aoColumnDefs": [
64
            { "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
64
            { "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] },
65
            { "sType": "anti-the", "aTargets" : [ "anti-the" ] },
65
            { "sType": "anti-the", "aTargets" : [ "anti-the" ] }
66
            { "sType": "title-string", "aTargets" : [ "title-string" ] }
67
        ],
66
        ],
68
        "aaSorting": [[ 2, "desc" ]],
67
        "aaSorting": [[ 2, "desc" ]],
69
        "sPaginationType": "full"
68
        "sPaginationType": "full"
70
- 

Return to bug 28007