@@ -, +, @@ OpacSeparateHoldings - Have the first patch applied - Verify it works correctly - Enable OpacSeparateHoldings - Reload - Apply this patch - Reload - Sign off :-D --- .../opac-tmpl/bootstrap/en/includes/columns_settings.inc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/columns_settings.inc +++ a/koha-tmpl/opac-tmpl/bootstrap/en/includes/columns_settings.inc @@ -25,13 +25,16 @@ function KohaTable(selector, dt_parameters, columns_settings) { text: _("Column visibility"), } ]; - var table = $(selector).dataTable($.extend(true, {}, dataTablesDefaults, dt_parameters)); - $(hidden_ids).each(function(index, value) { - table.fnSetColumnVis( value, false ); + var tables = $(selector).map(function(){ + var table = $(this).dataTable($.extend(true, {}, dataTablesDefaults, dt_parameters)); + $(hidden_ids).each(function(index, value) { + table.fnSetColumnVis(value, false); + }); + return table; }); - return table; + return tables; } --