If an item has already been selected to fulfill the hold, it will not be suspended'>
<!ENTITY myopac.holds.thaw.confirm 'Are you sure you wish to activate the selected holds?'>
<!ENTITY myopac.holds.thaw_date.confirm 'Are you sure you wish to change the activate date for the selected holds?'>
-<!ENTITY myopac.holds.freeze.select_thaw "Select a 'Suspend' date. This is the date at which the holds will become active again. If no date is chosen, the holds will remain suspended until they are manually activated.">
+<!ENTITY myopac.holds.freeze.select_thaw "Select an automatic activation date. If no date is chosen, the holds will remain suspended until they are manually activated.">
<!ENTITY opac.holds.freeze "Suspend this hold">
<!ENTITY opac.holds.freeze.help "A suspended hold will retain its place in the queue, but will not be fulfilled until it has been activated.">
By default, holds will use the notification style you choose here.
However, you will still have the option to change individual holds regardless of this setting.">
<!ENTITY myopac.holds.unfrozen "Active">
-<!ENTITY myopac.holds.frozen.until "Suspend Until...">
+<!ENTITY myopac.holds.frozen.until "Activate on...">
<!-- =================================================================
MyOPAC Summary page
#opac.result.sort { margin-left: 5px; }
#xul_recipient_me { margin-left: 25px; }
+#myopac_holds_thaw_date_form {padding: 10px; text-align: center;}
+#myopac_holds_freeze_select_thaw {margin-right: 100px; margin-left: 100px; }
+
function myopacApplyThawDate() {
var dateString = $('myopac_holds_thaw_date_input').value;
- dateString = (dateString == null) ? null : Date.parseIso8601(dateString).iso8601Format('YMDHM', false, false, true);
+ if(dateString) {
+ dateString = (dateString == null) ? null :
+ Date.parseIso8601(dateString).iso8601Format('YMDHM', false, false, true);
+ } else {
+ dateString = null;
+ }
myopacProcessHolds('freeze', dateString);
}
</table>
<div id='myopac_holds_thaw_date_form' class='hide_me'>
- <p>&myopac.holds.freeze.select_thaw;</p>
+ <div id='myopac_holds_freeze_select_thaw'>&myopac.holds.freeze.select_thaw;</div>
<p>
<input type='text' id='myopac_holds_thaw_date_input'/>
<img src="<!--#echo var='OILS_OPAC_JS_HOST'-->/common/js/jscalendar/img.gif" id='myopac_holds_thaw_date_img' class='cal_img'/>