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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/background_jobs.tt (+1 lines)
Lines 4-9 Link Here
4
[% USE KohaDates %]
4
[% USE KohaDates %]
5
[% SET footerjs = 1 %]
5
[% SET footerjs = 1 %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
7
[% INCLUDE 'columns_settings.inc' %]
7
<title>
8
<title>
8
    [% IF op == 'view' %]
9
    [% IF op == 'view' %]
9
        Details of job #[% job.id | html %] &rsaquo;
10
        Details of job #[% job.id | html %] &rsaquo;
(-)a/koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js (-5 / +3 lines)
Lines 118-132 function hideAllColumns() { Link Here
118
118
119
$(document).ready(function () {
119
$(document).ready(function () {
120
    hideColumns();
120
    hideColumns();
121
    $("#itemst").dataTable($.extend(true, {}, dataTablesDefaults, {
121
    var items_table = KohaTable("itemst", {
122
        "sDom": 't',
123
        "aoColumnDefs": [
122
        "aoColumnDefs": [
124
            { "aTargets": [0, 1], "bSortable": false, "bSearchable": false },
123
            { "aTargets": [0, 1], "bSortable": false, "bSearchable": true },
125
            { "aTargets": [0], "bVisible": false },
124
            { "aTargets": [0], "bVisible": false },
126
            { "sType": "anti-the", "aTargets": ["anti-the"] }
125
            { "sType": "anti-the", "aTargets": ["anti-the"] }
127
        ],
126
        ],
128
        "bPaginate": false,
127
        "bPaginate": false,
129
    }));
128
    });
130
    // Highlight in yellow item rows that cannot be deleted
129
    // Highlight in yellow item rows that cannot be deleted
131
    $(".error").parents('tr').find('td').css('background-color', '#ffff99');
130
    $(".error").parents('tr').find('td').css('background-color', '#ffff99');
132
131
133
- 

Return to bug 32970