Lines 443-459
Link Here
|
443 |
$("#searchbutton").on("click",function(){ |
443 |
$("#searchbutton").on("click",function(){ |
444 |
return CheckSearch(); |
444 |
return CheckSearch(); |
445 |
}); |
445 |
}); |
446 |
$(".choose_entry").on("click",function(e){ |
446 |
$("#uploadresults tbody").on("click",".choose_entry",function(e){ |
447 |
e.preventDefault(); |
447 |
e.preventDefault(); |
448 |
var record_hashvalue = $(this).data("record-hashvalue"); |
448 |
var record_hashvalue = $(this).data("record-hashvalue"); |
449 |
Choose( record_hashvalue ); |
449 |
Choose( record_hashvalue ); |
450 |
}); |
450 |
}); |
451 |
$(".download_entry").on("click",function(e){ |
451 |
$("#uploadresults tbody").on("click",".download_entry",function(e){ |
452 |
e.preventDefault(); |
452 |
e.preventDefault(); |
453 |
var record_id = $(this).data("record-id"); |
453 |
var record_id = $(this).data("record-id"); |
454 |
SubmitMe( 'download', record_id ); |
454 |
SubmitMe( 'download', record_id ); |
455 |
}); |
455 |
}); |
456 |
$(".delete_entry").on("click",function(e){ |
456 |
$("#uploadresults tbody").on("click",".delete_entry",function(e){ |
457 |
e.preventDefault(); |
457 |
e.preventDefault(); |
458 |
var record_id = $(this).data("record-id"); |
458 |
var record_id = $(this).data("record-id"); |
459 |
DeleteEntry( record_id ); |
459 |
DeleteEntry( record_id ); |
460 |
- |
|
|