|
Lines 162-167
Link Here
|
| 162 |
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" /> |
162 |
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/datatables.css" /> |
| 163 |
[% INCLUDE 'datatables.inc' %] |
163 |
[% INCLUDE 'datatables.inc' %] |
| 164 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.dataTables.columnFilter.js"></script> |
164 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.dataTables.columnFilter.js"></script> |
|
|
165 |
<script type="text/javascript" src="[% interface %]/lib/jquery/plugins/jquery.fixFloat.js"></script> |
| 165 |
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/itemsearchform.css" /> |
166 |
<link rel="stylesheet" type="text/css" href="[% interface %]/[% theme %]/css/itemsearchform.css" /> |
| 166 |
<script type="text/javascript"> |
167 |
<script type="text/javascript"> |
| 167 |
//<![CDATA[ |
168 |
//<![CDATA[ |
|
Lines 305-310
Link Here
|
| 305 |
} |
306 |
} |
| 306 |
|
307 |
|
| 307 |
$(document).ready(function () { |
308 |
$(document).ready(function () { |
|
|
309 |
$('#toolbar').fixFloat(); |
| 308 |
// Add the "New field" link. |
310 |
// Add the "New field" link. |
| 309 |
var form_field = $('div.form-field-select-text').last() |
311 |
var form_field = $('div.form-field-select-text').last() |
| 310 |
var NEW_FIELD = _("New field"); |
312 |
var NEW_FIELD = _("New field"); |
|
Lines 366-371
Link Here
|
| 366 |
<h1>Item search</h1> |
368 |
<h1>Item search</h1> |
| 367 |
<p><a href="/cgi-bin/koha/catalogue/search.pl">Go to advanced search</a></p> |
369 |
<p><a href="/cgi-bin/koha/catalogue/search.pl">Go to advanced search</a></p> |
| 368 |
<form action="/cgi-bin/koha/catalogue/itemsearch.pl" method="get" id="itemsearchform"> |
370 |
<form action="/cgi-bin/koha/catalogue/itemsearch.pl" method="get" id="itemsearchform"> |
|
|
371 |
<div id="toolbar" class="btn-toolbar"> |
| 372 |
<fieldset class="action"> |
| 373 |
<div class="btn-group"> |
| 374 |
<div class="form-field-radio"> |
| 375 |
<label>Output:</label> |
| 376 |
<input type="radio" id="format-html" name="format" value="html" checked="checked" /> <label for="format-html">Screen</label> |
| 377 |
<input type="radio" id="format-csv" name="format" value="csv" /> <label for="format-csv">CSV</label> |
| 378 |
</div> |
| 379 |
<div class="form-actions"> |
| 380 |
<button class="btn btn-small"><i class="fa fa-search"></i> Search</button> |
| 381 |
</div> |
| 382 |
</div> |
| 383 |
</fieldset> |
| 384 |
</div> |
| 369 |
<fieldset> |
385 |
<fieldset> |
| 370 |
[% INCLUDE form_field_select |
386 |
[% INCLUDE form_field_select |
| 371 |
name="homebranch" |
387 |
name="homebranch" |
|
Lines 437-452
Link Here
|
| 437 |
<span class="hint">ISO Format (YYYY-MM-DD)</span> |
453 |
<span class="hint">ISO Format (YYYY-MM-DD)</span> |
| 438 |
</div> |
454 |
</div> |
| 439 |
</fieldset> |
455 |
</fieldset> |
| 440 |
<fieldset> |
|
|
| 441 |
<div class="form-field-radio"> |
| 442 |
<label>Output:</label> |
| 443 |
<input type="radio" id="format-html" name="format" value="html" checked="checked" /> <label for="format-html">Screen</label> |
| 444 |
<input type="radio" id="format-csv" name="format" value="csv" /> <label for="format-csv">CSV</label> |
| 445 |
</div> |
| 446 |
<div class="form-actions"> |
| 447 |
<input type="submit" value="Search" /> |
| 448 |
</div> |
| 449 |
</fieldset> |
| 450 |
</form> |
456 |
</form> |
| 451 |
|
457 |
|
| 452 |
<p><a id="editsearchlink" href="#" style="display:none">Edit search</a></p> |
458 |
<p><a id="editsearchlink" href="#" style="display:none">Edit search</a></p> |
| 453 |
- |
|
|