Lines 2-11
Link Here
|
2 |
<title>Koha › Tools › MARC export</title> |
2 |
<title>Koha › Tools › MARC export</title> |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
3 |
[% INCLUDE 'doc-head-close.inc' %] |
4 |
[% INCLUDE 'calendar.inc' %] |
4 |
[% INCLUDE 'calendar.inc' %] |
|
|
5 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/multiple-select/jquery.multiple.select.js"></script> |
6 |
<link rel="stylesheet" type="text/css" href="[% interface %]/lib/jquery/plugins/multiple-select/multiple-select.css" /> |
5 |
<script type="text/javascript"> |
7 |
<script type="text/javascript"> |
6 |
//<![CDATA[ |
8 |
//<![CDATA[ |
7 |
$(document).ready(function() { |
9 |
$(document).ready(function() { |
8 |
$('#exporttype').tabs(); |
10 |
$('#exporttype').tabs(); |
|
|
11 |
|
12 |
$(document).ready(function(){ |
13 |
$("select[multiple='multiple']").multipleSelect( { |
14 |
placeholder: _("Please select ..."), |
15 |
selectAllText: _("Select all"), |
16 |
allSelected: _("All selected"), |
17 |
countSelected: _("# of % selected"), |
18 |
noMatchesFound: _("No matches found") |
19 |
} ); |
20 |
}); |
9 |
}); |
21 |
}); |
10 |
//]]> |
22 |
//]]> |
11 |
</script> |
23 |
</script> |
Lines 65-73
$(document).ready(function() {
Link Here
|
65 |
</li> |
77 |
</li> |
66 |
|
78 |
|
67 |
<li> |
79 |
<li> |
68 |
<label>Library: </label> |
80 |
<label for="branch">Library: </label> |
69 |
[% INCLUDE 'branch-selector.inc' |
81 |
<select id="branch" name="branch" multiple="multiple"> |
70 |
branches = branchloop %] |
82 |
[% FOREACH branchloo IN branchloop %] |
|
|
83 |
[% IF ( branchloo.selected ) %] |
84 |
<option value="[% branchloo.value %]" selected="selected">[% branchloo.branchname %]</option> |
85 |
[% ELSE %] |
86 |
<option value="[% branchloo.value %]">[% branchloo.branchname %]</option> |
87 |
[% END %] |
88 |
[% END %] |
89 |
</select> |
71 |
</li> |
90 |
</li> |
72 |
<li> |
91 |
<li> |
73 |
<label for="startcn">From item call number: </label> |
92 |
<label for="startcn">From item call number: </label> |
74 |
- |
|
|