Lines 62-75
function placeHold () {
Link Here
|
62 |
return false; |
62 |
return false; |
63 |
}); |
63 |
}); |
64 |
$(".holdsep").text("| "); |
64 |
$(".holdsep").text("| "); |
65 |
$(".hold").text(_("Place Hold")); |
65 |
$(".hold").text(_("Place hold")); |
66 |
$("#downloadcartc").empty(); |
66 |
$("#downloadcartc").empty(); |
67 |
|
67 |
|
68 |
$("#itemst").dataTable($.extend(true, {}, dataTablesDefaults, { |
68 |
$("#itemst").dataTable($.extend(true, {}, dataTablesDefaults, { |
69 |
"sDom": 't', |
69 |
"sDom": 't', |
70 |
"aoColumnDefs": [ |
70 |
"aoColumnDefs": [ |
71 |
{ "aTargets": [ 0 ], "bSortable": false, "bSearchable": false }, |
71 |
{ "bSortable": false, "bSearchable": false, 'aTargets': [ 'NoSort' ] }, |
72 |
{ "aTargets": [ 3 ], "sType": 'callnumbers' }, |
72 |
{ "sType": "anti-the", "aTargets" : [ "anti-the" ] }, |
|
|
73 |
{ "sType": "callnumbers", "aTargets" : [ "callnumbers"] } |
73 |
], |
74 |
], |
74 |
"aaSorting": [[ 1, "asc" ]], |
75 |
"aaSorting": [[ 1, "asc" ]], |
75 |
"bPaginate": false |
76 |
"bPaginate": false |
Lines 293-300
function placeHold () {
Link Here
|
293 |
</p> |
294 |
</p> |
294 |
<table id="itemst"> |
295 |
<table id="itemst"> |
295 |
<thead><tr> |
296 |
<thead><tr> |
296 |
[% UNLESS ( print_basket ) %]<th> </th>[% END %] |
297 |
[% UNLESS ( print_basket ) %]<th class="NoSort"> </th>[% END %] |
297 |
<th>Title</th> |
298 |
<th class="anti-the">Title</th> |
298 |
<th>Item type</th> |
299 |
<th>Item type</th> |
299 |
<th><a id="items-popover" href="#" data-trigger="hover" data-toggle="popover" data-placement="top" title="Item sorting" data-content="Items are sorted by the highest or lowest callnumber in a group of items respectively.">Items</a></th> |
300 |
<th><a id="items-popover" href="#" data-trigger="hover" data-toggle="popover" data-placement="top" title="Item sorting" data-content="Items are sorted by the highest or lowest callnumber in a group of items respectively.">Items</a></th> |
300 |
</tr></thead> |
301 |
</tr></thead> |
Lines 322-328
function placeHold () {
Link Here
|
322 |
|
323 |
|
323 |
</td> |
324 |
</td> |
324 |
<td>[% BIBLIO_RESULT.description %]</td> |
325 |
<td>[% BIBLIO_RESULT.description %]</td> |
325 |
<td> |
326 |
<td class="callnumbers"> |
326 |
[% IF ( BIBLIO_RESULT.ITEM_RESULTS ) %] |
327 |
[% IF ( BIBLIO_RESULT.ITEM_RESULTS ) %] |
327 |
[% FOREACH ITEM_RESULT IN BIBLIO_RESULT.ITEM_RESULTS %] |
328 |
[% FOREACH ITEM_RESULT IN BIBLIO_RESULT.ITEM_RESULTS %] |
328 |
<div><span class="nowrap"><strong><span class="callnumber">[% ITEM_RESULT.itemcallnumber %]</span></strong> [% ITEM_RESULT.branchname %] <span class="shelvingloc inline">[% ITEM_RESULT.location_description %]</span></span></div> |
329 |
<div><span class="nowrap"><strong><span class="callnumber">[% ITEM_RESULT.itemcallnumber %]</span></strong> [% ITEM_RESULT.branchname %] <span class="shelvingloc inline">[% ITEM_RESULT.location_description %]</span></span></div> |
329 |
- |
|
|