Lines 136-141
Link Here
|
136 |
<th>Suspend holds</th> |
136 |
<th>Suspend holds</th> |
137 |
<th>Suspend until</th> |
137 |
<th>Suspend until</th> |
138 |
<th>New hold note</th> |
138 |
<th>New hold note</th> |
|
|
139 |
<th>Clear hold notes</th> |
139 |
</tr> |
140 |
</tr> |
140 |
</thead> |
141 |
</thead> |
141 |
<tbody> |
142 |
<tbody> |
Lines 162-167
Link Here
|
162 |
<td> |
163 |
<td> |
163 |
<input type="text" id="new_hold_note" name="new_hold_note"/> |
164 |
<input type="text" id="new_hold_note" name="new_hold_note"/> |
164 |
</td> |
165 |
</td> |
|
|
166 |
<td> |
167 |
<input class="selection" type="checkbox" id="clear_hold_notes" name="clear_hold_notes" value="1"/> |
168 |
</td> |
165 |
</tr> |
169 |
</tr> |
166 |
</tbody> |
170 |
</tbody> |
167 |
</table> <!-- /#modify_holds_options --> |
171 |
</table> <!-- /#modify_holds_options --> |
Lines 185-190
Link Here
|
185 |
[% Asset.js("js/tools-menu.js") | $raw %] |
189 |
[% Asset.js("js/tools-menu.js") | $raw %] |
186 |
[% INCLUDE 'calendar.inc' %] |
190 |
[% INCLUDE 'calendar.inc' %] |
187 |
[% INCLUDE 'datatables.inc' %] |
191 |
[% INCLUDE 'datatables.inc' %] |
|
|
192 |
[% INCLUDE 'select2.inc' %] |
188 |
[% INCLUDE 'js-patron-format.inc' %] |
193 |
[% INCLUDE 'js-patron-format.inc' %] |
189 |
[% Asset.js("lib/jquery/plugins/humanmsg.js") | $raw %] |
194 |
[% Asset.js("lib/jquery/plugins/humanmsg.js") | $raw %] |
190 |
<script> |
195 |
<script> |
Lines 192-197
Link Here
|
192 |
let hold_ids = [% IF updated_holds %] [% updated_holds | $raw %] [% ELSE %] [] [% END %]; |
197 |
let hold_ids = [% IF updated_holds %] [% updated_holds | $raw %] [% ELSE %] [] [% END %]; |
193 |
|
198 |
|
194 |
$(document).ready(function() { |
199 |
$(document).ready(function() { |
|
|
200 |
|
201 |
// Apply select2 to all select fields having a "multiple" attribute |
202 |
let selectFields = document.querySelectorAll('select[multiple]'); |
203 |
selectFields.forEach((selectField) => { |
204 |
selectField.style.minWidth = '200px'; |
205 |
$(selectField).select2(); |
206 |
}); |
207 |
|
195 |
//Empty local storage from previous selections |
208 |
//Empty local storage from previous selections |
196 |
localStorage.removeItem("holds_modify_selections"); |
209 |
localStorage.removeItem("holds_modify_selections"); |
197 |
|
210 |
|
Lines 493-498
Link Here
|
493 |
var new_suspend_status = $("#new_suspend_status").val(); |
506 |
var new_suspend_status = $("#new_suspend_status").val(); |
494 |
var new_suspend_date = $("#new_suspend_date").val(); |
507 |
var new_suspend_date = $("#new_suspend_date").val(); |
495 |
var new_hold_note = $("#new_hold_note").val(); |
508 |
var new_hold_note = $("#new_hold_note").val(); |
|
|
509 |
var clear_hold_notes = $("#clear_hold_notes").val(); |
496 |
|
510 |
|
497 |
if ( holds_checked.length == 0 ) { |
511 |
if ( holds_checked.length == 0 ) { |
498 |
e.preventDefault(); |
512 |
e.preventDefault(); |