|
Lines 195-202
Link Here
|
| 195 |
|
195 |
|
| 196 |
<form action="/cgi-bin/koha/admin/authorised_values.pl" method="get" id="category"> |
196 |
<form action="/cgi-bin/koha/admin/authorised_values.pl" method="get" id="category"> |
| 197 |
<p> |
197 |
<p> |
| 198 |
<label for="searchfield">Show category: </label> |
198 |
<label for="category_search">Show category: </label> |
| 199 |
<select name="searchfield" id="searchfield" size="1"> |
199 |
<select name="searchfield" id="category_search" size="1"> |
| 200 |
[% FOR c IN categories %] |
200 |
[% FOR c IN categories %] |
| 201 |
[% IF c == searchfield %] |
201 |
[% IF c == searchfield %] |
| 202 |
<option value="[% c | html %]" selected="selected">[% c | html %]</option> |
202 |
<option value="[% c | html %]" selected="selected">[% c | html %]</option> |
|
Lines 330-336
Link Here
|
| 330 |
return confirm(_("Are you sure you want to delete this authorized value?")); |
330 |
return confirm(_("Are you sure you want to delete this authorized value?")); |
| 331 |
}); |
331 |
}); |
| 332 |
$('#category').find("input:submit").hide(); |
332 |
$('#category').find("input:submit").hide(); |
| 333 |
$('#searchfield').change(function() { |
333 |
$('#category_search').change(function() { |
| 334 |
$('#category').submit(); |
334 |
$('#category').submit(); |
| 335 |
}); |
335 |
}); |
| 336 |
$(".library_limitation").tooltip(); |
336 |
$(".library_limitation").tooltip(); |
| 337 |
- |
|
|