]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/server/circ/pre_cat_fields.xul
Initial fix from Michael Peters addressing small-screen UI issues: LP#767507
[working/Evergreen.git] / Open-ILS / xul / staff_client / server / circ / pre_cat_fields.xul
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Screen: Patron Display -->
4 <!--
5  vim:noet:sw=4:ts=4:
6 -->
7
8 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
9 <!-- STYLESHEETS -->
10 <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
11 <?xml-stylesheet href="/xul/server/skin/global.css" type="text/css"?>
12
13 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
14 <!-- LOCALIZATION -->
15 <!DOCTYPE window PUBLIC "" ""[
16     <!--#include virtual="/opac/locale/${locale}/lang.dtd"-->
17 ]>
18
19 <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
20 <!-- OVERLAYS -->
21 <?xul-overlay href="/xul/server/OpenILS/util_overlay.xul"?>
22
23 <window id="pre_cat_fields" title="&staff.circ.pre_cat.window.title;"
24     orient="vertical" style="overflow: auto" oils_persist="height width sizemode"
25     onload="try{ my_init(); font_helper(); persist_helper(); }catch(E){alert(E);}"
26     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
27
28     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
29     <!-- BEHAVIOR -->
30         <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true; var g = {};</script>
31         <scripts id="openils_util_scripts"/>
32
33     <script type="text/javascript" src="/xul/server/main/JSAN.js"/>
34
35     <script>
36     <![CDATA[
37
38         function my_init() {
39             netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");
40             if (typeof JSAN == 'undefined') {
41                 throw( document.getElementById("commonStrings").getString('common.jsan.missing') );
42             }
43             JSAN.errorLevel = "die"; // none, warn, or die
44             JSAN.addRepository('/xul/server/');
45             JSAN.use('util.error'); g.error = new util.error();
46             g.error.sdump('D_TRACE','my_init() for pre_cat_fields.xul');
47             JSAN.use('OpenILS.data'); g.data = new OpenILS.data();
48             g.data.init({'via':'stash'});
49
50             g.data.precat_dummy_title = '';
51             g.data.precat_dummy_author = '';
52             g.data.precat_dummy_isbn = '';
53             g.data.precat_submit = 'cancel';
54             g.data.stash('precat_submit');
55
56             JSAN.use('util.widgets'); JSAN.use('util.functional');
57             var x = util.widgets.make_menulist( 
58                 [ [ $("catStrings").getString("staff.cat.copy_editor.field.unset_or_null"), "<HACK:KLUDGE:NULL>" ] ].concat( 
59                     util.functional.map_list(
60                         g.data.list.ccm,
61                         function(obj) {
62                             return [
63                                 document.getElementById('commonStrings').getFormattedString('staff.circ_modifier.display',[obj.code(),obj.name(),obj.description()]),
64                                 obj.code()
65                             ];
66                         }
67                     ).sort() 
68                 ) 
69             );
70             x.setAttribute('id','dummy_circ_modifier');
71             document.getElementById('placeholder').appendChild(x);
72             if (g.data.precat_circ_modifier) {
73                 x.setAttribute('value', g.data.precat_circ_modifier);
74                 x.value = g.data.precat_circ_modifier;
75             }
76             document.getElementById('dummy_title').focus();
77         }
78
79         function my_finish() {
80             g.data.precat_dummy_title = document.getElementById('dummy_title').value;
81             g.data.precat_dummy_author = document.getElementById('dummy_author').value;
82             g.data.precat_dummy_isbn = document.getElementById('dummy_isbn').value;
83             var cm = document.getElementById('dummy_circ_modifier').value;
84             if (cm == '<HACK:KLUDGE:NULL>') cm = null;
85             g.data.precat_circ_modifier = cm;
86             g.data.precat_submit = 'go';
87             g.data.stash('precat_dummy_title','precat_dummy_author','precat_dummy_isbn','precat_circ_modifier','precat_submit');
88             window.close();
89         }
90
91     ]]>
92     </script>
93
94     <messagecatalog id="circStrings" src="/xul/server/locale/<!--#echo var='locale'-->/circ.properties" />
95     <messagecatalog id="catStrings" src="/xul/server/locale/<!--#echo var='locale'-->/cat.properties" />
96
97     <groupbox flex="1" style="overflow: auto">
98         <caption label="&staff.circ.pre_cat.caption.label;"/>
99         <grid>
100             <columns><column /><column flex="1"/></columns>
101             <rows>
102                 <row>
103                     <label value="&staff.circ.pre_cat.dummy_title.label;" accesskey="&staff.circ.pre_cat.dummy_title.accesskey;" control="dummy_title"/>
104                     <textbox id="dummy_title" context="clipboard"/>
105                 </row>
106                 <row>
107                     <label value="&staff.circ.pre_cat.dummy_author.label;" accesskey="&staff.circ.pre_cat.dummy_author.accesskey;" control="dummy_author"/>
108                     <textbox id="dummy_author" context="clipboard"/>
109                 </row>
110                 <row>
111                     <label value="&staff.circ.pre_cat.dummy_isbn.label;" accesskey="&staff.circ.pre_cat.dummy_isbn.accesskey;" control="dummy_isbn"/>
112                     <textbox id="dummy_isbn" context="clipboard"/>
113                 </row>
114                 <row>
115                     <label value="&staff.circ.pre_cat.dummy_circ_modifier.label;" accesskey="&staff.circ.pre_cat.dummy_circ_modifier.accesskey;" control="dummy_circ_modifier"/>
116                     <box id="placeholder" />
117                 </row>
118             </rows>
119         </grid>
120         <hbox>
121             <spacer flex="1"/>
122             <button label="&staff.circ.pre_cat.cancel.label;" oncommand="window.close()" accesskey="&staff.circ.pre_cat.cancel.accesskey;"/>
123             <button label="&staff.circ.pre_cat.checkout.label;" oncommand="my_finish();" accesskey="&staff.circ.pre_cat.checkout.accesskey;"/>
124         </hbox>
125     </groupbox>
126
127 </window>
128
129