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

(-)a/koha-tmpl/opac-tmpl/bootstrap/en/includes/columns_settings.inc (-2 / +2 lines)
Lines 6-12 function KohaTable(selector, dt_parameters, columns_settings) { Link Here
6
    var hidden_ids = [];
6
    var hidden_ids = [];
7
    var included_ids = [];
7
    var included_ids = [];
8
    $(columns_settings).each( function() {
8
    $(columns_settings).each( function() {
9
        var named_id = $( 'thead th[data-colname="' + this.columnname + '"]', selector ).index( 'th' );
9
        var named_id = $( 'thead th[data-colname="' + this.columnname + '"]', selector ).index( selector+' th' );
10
10
        var used_id = dt_parameters.bKohaColumnsUseNames ? named_id : id;
11
        var used_id = dt_parameters.bKohaColumnsUseNames ? named_id : id;
11
        if ( used_id == -1 ) return;
12
        if ( used_id == -1 ) return;
12
13
13
- 

Return to bug 16759