]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/staged.xul
f7fb70f2fa81e6062b6e2174dff7921f5fdd8a61
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / patron / staged.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Cancel/Reset Action::Trigger Events for 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="staged_win" onload="try { font_helper(); persist_helper(); staged_init(); } catch(E) { alert(E); }"
21     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
22
23     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
24     <!-- BEHAVIOR -->
25     <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;</script>
26     <scripts id="openils_util_scripts"/>
27
28     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
29     <script type="text/javascript" src="staged.js"/>
30
31     <messagecatalog id="patronStrings" src="/xul/server/locale/<!--#echo var='locale'-->/patron.properties" />
32
33     <commandset id="staged_cmds">
34         <command id="cmd_load" disabled="true"/>
35         <command id="cmd_cancel" disabled="true"/>
36         <command id="cmd_reload" />
37     </commandset>
38
39     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
40     <!-- CONTENT -->
41     <groupbox id="staged_groupbox" flex="1" class="my_overflow">
42         <caption id="staged_caption" label="&staff.patron_display.staged.caption;"/>
43         <vbox flex="0">
44             <hbox flex="1">
45                 <vbox pack="center">
46                     <label value="&staff.patron_display.staged.limit.label;" accesskey="&staff.patron_display.staged.limit.accesskey;" control="limit" />
47                 </vbox>
48                 <textbox id="limit" type="number" value="100" oils_persist="value" />
49                 <vbox pack="center">
50                     <label value="&staff.patron_display.staged.home_lib.label;" accesskey="&staff.patron_display.staged.home_lib.accesskey;" control="lib_menu" />
51                 </vbox>
52                 <hbox id="lib_menu_placeholder" oils_persist="value" />
53                 <button command="cmd_reload" label="&staff.patron_display.staged.reload.label;" accesskey="&staff.patron_display.staged.reload.accesskey;" />
54                 <spacer flex="1" />
55                 <progressmeter id="progress" flex="1" hidden="true" mode="undetermined"/>
56                 <button command="cmd_load" label="&staff.patron_display.staged.menu.actions.load.label;" accesskey="&staff.patron_display.staged.menu.actions.load.accesskey;"/>
57                 <button command="cmd_cancel" label="&staff.patron_display.staged.menu.actions.cancel.label;" accesskey="&staff.patron_display.staged.menu.actions.cancel.accesskey;"/>
58             </hbox>
59         </vbox>
60         <tree id="stgu_list" flex="1" enableColumnDrag="true" context="stgu_actions" />
61         <hbox id="list_actions" />
62     </groupbox>
63
64     <popupset id="stgu_popupset">
65         <menupopup id="stgu_actions" position="at_pointer">
66             <menuitem command="cmd_load" label="&staff.patron_display.staged.menu.actions.load.label;" accesskey="&staff.patron_display.menu.actions.load.accesskey;"/>
67             <menuitem command="cmd_cancel" label="&staff.patron_display.staged.menu.actions.cancel.label;" accesskey="&staff.patron_display.menu.actions.cancel.accesskey;"/>
68         </menupopup>
69     </popupset>
70
71 </window>
72