Lines 498-504
Link Here
|
498 |
<form class="update_suggestions" name="f" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#tab_[% loop.count %]"> |
498 |
<form class="update_suggestions" name="f" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#tab_[% loop.count %]"> |
499 |
|
499 |
|
500 |
[% IF ( suggestion.suggestions_loop ) %] |
500 |
[% IF ( suggestion.suggestions_loop ) %] |
501 |
<p><a class="checkall" href="#">Check all</a> | <a name="uncheckall" href="#">Uncheck all</a></p> |
501 |
<p><a class="checkall" href="#">Check all</a> | <a class="uncheckall" href="#">Uncheck all</a></p> |
502 |
<table id="table_[% loop.count %]" class="sorted"> |
502 |
<table id="table_[% loop.count %]" class="sorted"> |
503 |
<thead> |
503 |
<thead> |
504 |
<tr> |
504 |
<tr> |
Lines 856-866
Link Here
|
856 |
[% END %] |
856 |
[% END %] |
857 |
|
857 |
|
858 |
$(".checkall").click(function(e){ |
858 |
$(".checkall").click(function(e){ |
859 |
$(this).parent(form).checkCheckboxes(); |
859 |
e.preventDefault(); |
|
|
860 |
$(this).parents('form').checkCheckboxes(); |
860 |
return false; |
861 |
return false; |
861 |
}); |
862 |
}); |
862 |
$(".uncheckall").click(function(e){ |
863 |
$(".uncheckall").click(function(e){ |
863 |
$(this).parent(form).unCheckCheckboxes(); |
864 |
e.preventDefault(); |
|
|
865 |
$(this).parents('form').unCheckCheckboxes(); |
864 |
return false; |
866 |
return false; |
865 |
}); |
867 |
}); |
866 |
$(".other_reason").hide(); |
868 |
$(".other_reason").hide(); |
867 |
- |
|
|