]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/hold_cancel.xul
LP1159768 - Client: Holds Client Controls Confusing
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / patron / hold_cancel.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Dialog: Apply Standing Penalty to Patron -->
4
5 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
6 <!-- PRESENTATION -->
7 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
8 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
9
10 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
11 <!-- LOCALIZATION -->
12 <!DOCTYPE window PUBLIC "" ""[
13     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
14 ]>
15
16 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
17 <!-- OVERLAYS -->
18 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
19
20 <window id="hold_cancel_win" 
21     onload="try { hold_cancel_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
22     onunload="try { hold_cancel_cleanup(); persist_helper_cleanup(); } catch(E) { alert(E); }"
23     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
24     title="&staff.hold_list.cancel_hold_dialog.title;">
25
26     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
27     <!-- BEHAVIOR -->
28     <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;</script>
29     <scripts id="openils_util_scripts"/>
30
31     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
32     <script type="text/javascript" src="hold_cancel.js"/>
33
34     <messagecatalog id="patronStrings" src="/xul/server/locale/<!--#echo var='locale'-->/patron.properties" />
35
36     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
37     <!-- CONTENT -->
38     <dialogheader title="&staff.hold_list.cancel_hold_dialog.header;" description="&staff.hold_list.cancel_hold_dialog.description;" />
39     <toolbox flex="1">
40         <toolbar>
41             <toolbarspring/>
42             <toolbaritem>
43                 <menulist id="ahrcc_menulist" label="">
44                     <menupopup id="ahrcc_menupopup"/>
45                 </menulist>
46             </toolbaritem>
47         </toolbar>
48     </toolbox>
49     <textbox id="note_tb" multiline="true" />
50     <hbox>
51         <spacer flex="1"/>
52         Are you sure you want to cancel the hold(s)?
53         <button id="cancel_btn" label="&staff.hold_list.cancel_hold_dialog.cancel_btn.label;" accesskey="&staff.hold_list.cancel_hold_dialog.cancel_btn.accesskey;" />
54         <button id="apply_btn" label="&staff.hold_list.cancel_hold_dialog.apply_btn.label;" accesskey="&staff.hold_list.cancel_hold_dialog.apply_btn.accesskey;" />
55     </hbox>
56 </window>
57