Lines 467-473
Link Here
|
467 |
<form class="update_suggestions" name="f" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#tab_[% loop.count %]"> |
467 |
<form class="update_suggestions" name="f" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#tab_[% loop.count %]"> |
468 |
|
468 |
|
469 |
[% IF ( suggestion.suggestions_loop ) %] |
469 |
[% IF ( suggestion.suggestions_loop ) %] |
470 |
<p><a class="checkall" href="#">Check all</a> | <a name="uncheckall" href="#">Uncheck all</a></p> |
470 |
<p><a class="checkall" href="#">Check all</a> | <a class="uncheckall" href="#">Uncheck all</a></p> |
471 |
<table id="table_[% loop.count %]" class="sorted"> |
471 |
<table id="table_[% loop.count %]" class="sorted"> |
472 |
<thead> |
472 |
<thead> |
473 |
<tr> |
473 |
<tr> |
Lines 815-825
Link Here
|
815 |
"sPaginationType": "full" |
815 |
"sPaginationType": "full" |
816 |
})); |
816 |
})); |
817 |
$(".checkall").click(function(e){ |
817 |
$(".checkall").click(function(e){ |
818 |
$(this).parent(form).checkCheckboxes(); |
818 |
e.preventDefault(); |
|
|
819 |
$(this).parents('form').checkCheckboxes(); |
819 |
return false; |
820 |
return false; |
820 |
}); |
821 |
}); |
821 |
$(".uncheckall").click(function(e){ |
822 |
$(".uncheckall").click(function(e){ |
822 |
$(this).parent(form).unCheckCheckboxes(); |
823 |
e.preventDefault(); |
|
|
824 |
$(this).parents('form').unCheckCheckboxes(); |
823 |
return false; |
825 |
return false; |
824 |
}); |
826 |
}); |
825 |
$(".other_reason").hide(); |
827 |
$(".other_reason").hide(); |
826 |
- |
|
|