]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/place_hold.xul
remove XUL @persist from list column definitions
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / patron / place_hold.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Item Hold/Recall Placement -->
4
5 <!-- /////////////////////////////////////////////////////////////////////// -->
6 <!-- STYLESHEETS -->
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="place_hold_win" 
21     onload="try{my_init();font_helper();persist_helper();}catch(E){alert(E);}"
22     onunload="try { my_cleanup(); persist_helper_cleanup(); } catch(E) { alert(E); }"
23     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
24
25     <!-- /////////////////////////////////////////////////////////////////// -->
26     <!-- BEHAVIOR -->
27     <script type="text/javascript">
28         var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;
29     </script>
30     <scripts id="openils_util_scripts"/>
31
32     <messagecatalog id="patronStrings"
33         src='/xul/server/locale/<!--#echo var="locale"-->/patron.properties'/>
34
35     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
36     <script type="text/javascript" src="place_hold.js"/>
37
38     <vbox flex="1">
39     <groupbox>
40         <caption label="&staff.item.batch.hold.groupbox_caption;"/>
41
42         <grid>
43             <columns>
44                 <column/>
45                 <column/>
46             </columns>
47             <rows>
48                 <row>
49                     <label control="hold_usr_textbox"
50                         value="&staff.item.batch.hold.hold_usr.label;"
51                         accesskey="&staff.item.batch.hold.hold_usr.accesskey;"/>
52                     <textbox id="hold_usr_textbox"/>
53                 </row>
54                 <row>
55                     <spacer/>
56                     <label id="hold_usr_name"/>
57                 </row>
58                 <row>
59                     <label control="hold_type_menu"
60                         value="&staff.item.batch.hold.hold_type_menu.label;"
61                         accesskey="&staff.item.batch.hold.hold_type_menu.accesskey;"/>
62                     <hbox>
63                         <menulist id="hold_type_menu" oils_persist="value">
64                             <menupopup>
65                                 <menuitem value="C"
66                                     label="&staff.item.batch.hold.hold_type_menuentry.copy_hold;"/>
67                                 <menuitem value="R"
68                                     label="&staff.item.batch.hold.hold_type_menuentry.recall_hold;"/>
69                                 <menuitem value="F"
70                                     label="&staff.item.batch.hold.hold_type_menuentry.force_hold;"/>
71                             </menupopup>
72                         </menulist>
73                     </hbox>
74                 </row>
75                 <row>
76                     <label
77                         value="&staff.item.batch.hold.pick_up_lib_menu.label;"
78                         accesskey="&staff.item.batch.hold.pick_up_lib_menu.accesskey;"/>
79                     <hbox id="pickup_lib_menu_placeholder"/>
80                 </row>
81                 <row>
82                     <spacer/>
83                     <hbox>
84                         <button id="cancel_btn"
85                             label="&staff.item.batch.hold.cancel_btn.label;"
86                             accesskey="&staff.item.batch.hold.cancel_btn.accesskey;"/>
87                         <button id="request_btn"
88                             label="&staff.item.batch.hold.request_btn.label;"
89                             accesskey="&staff.item.batch.hold.request_btn.accesskey;"/>
90                         <progressmeter id="progress_meter"
91                             mode="undetermined"
92                             hidden="true" />
93                     </hbox>
94                 </row>
95             </rows>
96         </grid>
97
98     </groupbox>
99     <description id="desc" hidden="true">
100         &staff.item.batch.hold.failures_and_settings;
101     </description>
102     <vbox id="msgs" flex="1" class="my_overflow"/>
103     </vbox>
104
105 </window>
106