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