]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/web/opac/skin/default/xml/advanced/advanced_wizard.xml
added sorting interface to the advanced "refined"
[Evergreen.git] / Open-ILS / web / opac / skin / default / xml / advanced / advanced_wizard.xml
1 <table class='data_grid data_grid_center' width='80%'>
2         <thead>
3                 <tr><td colspan='2'>&opac.advanced.wizard.title;</td></tr>
4         </thead>
5         <tbody style='text-align: left'>
6                 <tr>
7                         <td>&opac.advanced.wizard.contains;</td>
8                         <td align='center'>
9                                 <input type='text' size='36' id='advanced.wizard.contains'> </input>
10                         </td>
11                 </tr>
12                 <tr>
13                         <td>&opac.advanced.wizard.nocontains;</td>
14                         <td align='center'>
15                                 <input type='text' size='36' id='advanced.wizard.nocontains'> </input>
16                         </td>
17                 </tr>
18                 <tr>
19                         <td>&opac.advanced.wizard.exact;</td>
20                         <td align='center'>
21                                 <input type='text' size='36' id='advanced.wizard.exact'> </input>
22                         </td>
23                 </tr>
24                 <tr>
25                         <td align='center'>
26                                 <span>&common.type;: </span>
27                                 <!--#include virtual="../common/stypes_selector.xml"-->
28                         </td>
29                         <td align='center'>
30                                 <span>&common.format;: </span>
31                                 <!--#set var='FORM_SEL_ID' value='advanced.wizard.form_selector'-->
32                                 <!--#include virtual="../common/format_selector.xml"-->
33                         </td>
34                 </tr>
35                 <tr>
36                         <td>
37                                 <span>Sort results by </span>
38                                 <select id='advanced.wizard.sort_by' 
39                                         onchange='
40                                         if(this.selectedIndex == 0) {
41                                                 $("advanced.wizard.sort_dir").disabled = true;
42                                                 $("advanced.wizard.sort_dir").selectedIndex = 0;
43                                         } else $("advanced.wizard.sort_dir").disabled = false;'>
44                                         <option value='rel'>Relevance</option>
45                                         <option value='title'>Title</option>
46                                         <option value='author'>Author</option>
47                                         <option value='pubdate' disabled='disabled'>Publication Date</option>
48                                         <!--
49                                         <option value='pubdate'>Publication Date</option>
50                                         -->
51                                 </select>
52                         </td>
53                         <td>
54                                 <span>Sort Direction </span>
55                                 <select id='advanced.wizard.sort_dir' disabled='disabled'>
56                                         <option value='asc'>Normal</option>
57                                         <option value='desc'>Reverse</option>
58                                 </select>
59                         </td>
60                 </tr>
61                 <tr>
62                         <td colspan='2' align='center'>
63                                 <input type='submit' onclick='advWizardRun();' value='&common.submit;'> </input>
64                         </td>
65                 </tr>
66         </tbody>
67 </table>