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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc (-1 lines)
Lines 133-139 function KohaTable(id_selector, dt_parameters, columns_settings, add_filters) { Link Here
133
        { "targets": [ "title-string" ], "type": "title-string" },
133
        { "targets": [ "title-string" ], "type": "title-string" },
134
        { "targets": [ "string-sort" ],  "type": "string" },
134
        { "targets": [ "string-sort" ],  "type": "string" },
135
        { "targets": [ "anti-the" ],     "type": "anti-the" },
135
        { "targets": [ "anti-the" ],     "type": "anti-the" },
136
        { "targets": [ "NoSort" ],       "orderable": false, "searchable": false },
137
    ];
136
    ];
138
    if ( new_parameters["aoColumnDefs"] === undefined ) {
137
    if ( new_parameters["aoColumnDefs"] === undefined ) {
139
        new_parameters["aoColumnDefs"] = default_column_defs;
138
        new_parameters["aoColumnDefs"] = default_column_defs;
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt (-1 / +3 lines)
Lines 1348-1353 Note that permanent location is a code, and location may be an authval. Link Here
1348
                    'bPaginate': false,
1348
                    'bPaginate': false,
1349
                    'bAutoWidth': false,
1349
                    'bAutoWidth': false,
1350
                    "aaSorting": [[ 4, "desc" ]],
1350
                    "aaSorting": [[ 4, "desc" ]],
1351
                    "aoColumnDefs": [
1352
                        { "targets": [ "NoSort" ], "orderable": false, "searchable": false },
1353
                    ]
1351
                }, columns_settings);
1354
                }, columns_settings);
1352
            [% END %]
1355
            [% END %]
1353
1356
1354
- 

Return to bug 28349