]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/templates/opac/pages/chunks/status_bar.ttk
always updating html templates
[working/Evergreen.git] / Open-ILS / src / templates / opac / pages / chunks / status_bar.ttk
1 [%
2         WRAPPER html/div;
3
4
5         WRAPPER html/table  + html/row id='top_status_bar' class='status_bar';
6
7                 cell(id='now_searching_cell', class='now_searching_cell');
8
9                 WRAPPER html/cell class='search_range_cell' nowrap='nowrap';
10         
11                         
12
13                         WRAPPER html/span;
14                                 space(3);
15                                 "Expand search to ";
16                                 space(1);
17         
18                                 WRAPPER html/select 
19                                         name='search_range_select' 
20                                         id='search_range_select'
21                                         onchange='logicNode.globalSearchDepth = this.options[this.selectedIndex].value;';
22                                 END;
23                         END;
24
25                         input( type='submit', value="Location", id='location_select_button' 
26                                 onclick='
27                                 var evt = event;
28                                 evt = (evt) ? evt : ((window.event) ? event : null);
29                                 var target = (evt.target) ? evt.target : evt.srcElement;
30                                 if(evt)
31                                         globalPage.locationTree.toggle(target);'
32                         ); 
33
34         
35                 
36                 END;
37
38         END;
39         END;
40 %]