a500b9a202ba4fff2acc8a1ef1be1db8d24d642b
[evergreen-equinox.git] / Open-ILS / xul / staff_client / server / cat / manage_multi_home_items.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Add Multi-Home Items to specific Bib -->
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="main_win" 
21     onload="try { my_init(); font_helper(); persist_helper(); } 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">
27         var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;
28     </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="manage_multi_home_items.js"/>
33
34     <commandset>
35         <command id="change" label="Change Peer Type on Selected Items" accesskey="C"/>
36         <command id="remove" label="Remove Selected Items from Bib" accesskey="R"/>
37     </commandset>
38
39     <popupset>
40         <popup id="actions">
41             <menuitem command="change" />
42             <menuitem command="remove" />
43         </popup>
44     </popupset>
45
46     <vbox flex="1" class="my_overflow">
47         <hbox>
48             <label value="Peer Type:" accesskey="T" control="bpt_menu"/>
49             <hbox id="menu_placeholder" />
50             <label control="scanbox" value="Barcode:" accesskey="B"/>
51             <textbox id="scanbox"/>
52             <button id="submit" label="Add to Bib" accesskey="A"/>
53             <spacer flex="1"/>
54             <menubar>
55                 <menu label="Actions for Selected Items" accesskey="f">
56                     <menupopup>
57                         <menuitem command="change" />
58                         <menuitem command="remove" />
59                     </menupopup>
60                 </menu>
61             </menubar>
62         </hbox>
63         <tree id="list" flex="1" enableColumnDrag="true" context="actions"/>
64         <hbox id="list_actions" />
65     </vbox>
66
67 </window>
68