@@ -, +, @@ onwards returned (e.g. a dot (.) as the search term should return all files with filetype) as expected (no need to actually delete the file - as long as it pops up a confirmation, it works as expected) --- koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/upload.tt @@ -443,17 +443,17 @@ $("#searchbutton").on("click",function(){ return CheckSearch(); }); - $(".choose_entry").on("click",function(e){ + $("#uploadresults tbody").on("click",".choose_entry",function(e){ e.preventDefault(); var record_hashvalue = $(this).data("record-hashvalue"); Choose( record_hashvalue ); }); - $(".download_entry").on("click",function(e){ + $("#uploadresults tbody").on("click",".download_entry",function(e){ e.preventDefault(); var record_id = $(this).data("record-id"); SubmitMe( 'download', record_id ); }); - $(".delete_entry").on("click",function(e){ + $("#uploadresults tbody").on("click",".delete_entry",function(e){ e.preventDefault(); var record_id = $(this).data("record-id"); DeleteEntry( record_id ); --