]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/xul/staff_client/chrome/content/util/timestamp.xul
LP#1084758 store staff client tpac (etc) zoom pref
[working/Evergreen.git] / Open-ILS / xul / staff_client / chrome / content / util / timestamp.xul
1 <?xml version="1.0"?>
2 <!-- Application: Evergreen Staff Client -->
3 <!-- Dialog: Generic Date/Time selector  -->
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="timestamp_win" 
21     onload="try { timestamp_init(); font_helper(); persist_helper(); } catch(E) { alert(E); }"
22     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
23     oils_persist="height width"
24     title="&staff.util.timestamp_dialog.title;">
25
26     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
27     <!-- BEHAVIOR -->
28     <script type="text/javascript">var myPackageDir = 'open_ils_staff_client'; var IAMXUL = true;</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="timestamp.js"/>
33
34     <!-- ///////////////////////////////////////////////////////////////////////////////////////////////////////////// -->
35     <!-- CONTENT -->
36     <dialogheader id="dialogheader" title="" description="" />
37     <vbox class="my_overflow" id="msg_area" flex="1"/>
38     <label id="err_msg" />
39     <hbox>
40         <label id="date_label" value="&staff.util.timestamp_dialog.date.label;" control="datepicker" accesskey="&staff.util.timestamp_dialog.date.accesskey;"/>
41         <datepicker id="datepicker" type="popup" context="clipboard"/>
42         <timepicker id="timepicker" type="popup" context="clipboard"/>
43         <spacer flex="1"/>
44         <button id="cancel_btn" label="&staff.util.timestamp_dialog.cancel_btn.label;" accesskey="&staff.util.timestamp_dialog.cancel_btn.accesskey;" />
45         <button id="remove_btn" label="&staff.util.timestamp_dialog.remove_btn.label;" accesskey="&staff.util.timestamp_dialog.remove_btn.accesskey;" hidden="true" />
46         <button id="apply_btn" label="&staff.util.timestamp_dialog.apply_btn.label;" accesskey="&staff.util.timestamp_dialog.apply_btn.accesskey;" />
47     </hbox>
48 </window>
49