toward a manage multi-home items interface
[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="add_multi_home_items.js"/>
33
34     <vbox flex="1" class="my_overflow">
35         <hbox>
36             <label value="Peer Type:" />
37             <hbox id="menu_placeholder" />
38             <label control="scanbox" value="Barcode:" accesskey="B"/>
39             <textbox id="scanbox"/>
40             <button id="submit" label="Add to Bib" accesskey="A"/>
41             <spacer flex="1"/>
42             <button id="change" label="Change Peer Type on Selected Items"/> 
43             <button id="remove" label="Remove Selected Items from Bib"/> 
44         </hbox>
45         <tree id="list" flex="1" enableColumnDrag="true" />
46         <hbox id="list_actions" />
47     </vbox>
48
49 </window>
50