]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/xul/staff_client/server/patron/items_overlay.xul
fixed bug which wouldn't allow the user alert to be cleared
[Evergreen.git] / Open-ILS / xul / staff_client / server / patron / items_overlay.xul
1 <?xml version="1.0"?>
2 <!DOCTYPE overlay SYSTEM "chrome://open_ils_staff_client/locale/lang.dtd">
3 <overlay id="items_overlay" 
4         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
5
6 <script>dump('loading items_overlay.xul\n');</script>
7
8 <commandset id="items_cmds" />
9
10 <box id="items_main" flex="1" orient="vertical" class="my_overflow">
11         <vbox id="cmvb1" flex="1"/>
12 </box>
13
14 <vbox id="cmvb1" flex="1">
15         <groupbox id="cmgb1" flex="1">
16                 <caption label="&staff.patron_navbar.items;" />
17                 <vbox flex="0">
18                         <hbox id="items_top_ui" />
19                 </vbox>
20                 <tree id="items_list" flex="1" enableColumnDrag="true"/>
21                 <vbox flex="0">
22                         <hbox id="items_bottom_ui" />
23                 </vbox>
24         </groupbox>
25 </vbox>
26
27 <hbox id="items_top_ui" flex="1">
28         <spacer id="pcii3s" flex="1"/>
29         <button id="show_catalog"
30                 label="Show in Catalog"
31                 command="cmd_show_catalog"
32         />
33         <button id="items_edit"
34                 label="Edit"
35                 command="cmd_items_edit"
36         />
37         <button id="items_mark_missing"
38                 label="Missing"
39                 command="cmd_items_mark_missing"
40         />
41         <button id="items_claimed_returned"
42                 label="Claims Returned"
43                 command="cmd_items_claimed_returned"
44         />
45         <button id="items_renew"
46                 label="Renew"
47                 command="cmd_items_renew"
48         />
49         <button id="items_checkin"
50                 label="Check In"
51                 command="cmd_items_checkin"
52         />
53         <button id="items_print" 
54                 label="&staff.patron_display.items.print_receipt_label;" 
55                 command="cmd_items_print"
56                 accesskey="&staff.patron_display.items.print_receipt_label.accesskey;"
57         />
58 </hbox>
59
60 </overlay>