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

(-)a/koha-tmpl/intranet-tmpl/prog/js/pages/batchMod.js (-2 / +3 lines)
Lines 117-123 function hideAllColumns() { Link Here
117
}
117
}
118
118
119
$(document).ready(function () {
119
$(document).ready(function () {
120
    hideColumns();
121
    var items_table = KohaTable("itemst", {
120
    var items_table = KohaTable("itemst", {
122
        "aoColumnDefs": [
121
        "aoColumnDefs": [
123
            { "aTargets": [0, 1], "bSortable": false, "bSearchable": true },
122
            { "aTargets": [0, 1], "bSortable": false, "bSearchable": true },
Lines 126-131 $(document).ready(function () { Link Here
126
        ],
125
        ],
127
        "bPaginate": false,
126
        "bPaginate": false,
128
    });
127
    });
128
129
    hideColumns();
130
129
    // Highlight in yellow item rows that cannot be deleted
131
    // Highlight in yellow item rows that cannot be deleted
130
    $(".error").parents('tr').find('td').css('background-color', '#ffff99');
132
    $(".error").parents('tr').find('td').css('background-color', '#ffff99');
131
133
132
- 

Return to bug 32477