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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc (-1 / +1 lines)
Lines 10-16 function KohaTable(selector, dt_parameters, columns_settings) { Link Here
10
    var excluded_ids = [];
10
    var excluded_ids = [];
11
    $(columns_settings).each( function() {
11
    $(columns_settings).each( function() {
12
        var named_id = $( 'thead th[data-colname="' + this.columnname + '"]', selector ).index( 'th' );
12
        var named_id = $( 'thead th[data-colname="' + this.columnname + '"]', selector ).index( 'th' );
13
        var used_id = this.columnname ? named_id : id;
13
        var used_id = dt_parameters.bKohaColumnsUseNames ? named_id : id;
14
        if ( used_id == -1 ) return;
14
        if ( used_id == -1 ) return;
15
15
16
        if ( this['is_hidden'] == "1" ) {
16
        if ( this['is_hidden'] == "1" ) {
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/additem.tt (-2 / +2 lines)
Lines 58-64 $(document).ready(function(){ Link Here
58
        ],
58
        ],
59
        'bPaginate': false,
59
        'bPaginate': false,
60
        'bInfo': false,
60
        'bInfo': false,
61
        "bAutoWidth": false
61
        "bAutoWidth": false,
62
        "bKohaColumnsUseNames": true
62
    }, columns_settings);
63
    }, columns_settings);
63
64
64
});
65
});
65
- 

Return to bug 14510