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

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc (-2 / +4 lines)
Lines 21-27 function KohaTable(selector, dt_parameters, columns_settings) { Link Here
21
        }
21
        }
22
        id++;
22
        id++;
23
    });
23
    });
24
    dt_parameters[ "oColVis" ] = { "aiExclude": excluded_ids };
24
    dt_parameters[ "oColVis" ] = {
25
        "aiExclude": excluded_ids,
26
        "buttonText": _("Column visibility")
27
    };
25
    var table = $(selector).dataTable($.extend(true, {}, dataTablesDefaults, dt_parameters));
28
    var table = $(selector).dataTable($.extend(true, {}, dataTablesDefaults, dt_parameters));
26
29
27
    $(hidden_ids).each(function(index, value) {
30
    $(hidden_ids).each(function(index, value) {
28
- 

Return to bug 15674