@@ -, +, @@ to export.tt *If CSV format is not active in the drop-down File format menu, create any profile to Usage export records on the link /cgi-bin/koha/tools/csv-profiles.pl --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/export.tt @@ -336,12 +336,12 @@ $("li.csv_profiles").hide(); - $("#bibs select[name='output_format']").on('change', function(){ + $("#bibs_panel select[name='output_format']").on('change', function(){ var format = $(this).val(); if ( format == 'csv' ) { - $("#bibs li.csv_profiles").show(); + $("#bibs_panel li.csv_profiles").show(); } else { - $("#bibs li.csv_profiles").hide(); + $("#bibs_panel li.csv_profiles").hide(); } }); $("#checkall").on("click",function(e){ --