openacs-4/.../resources/lists/select-menu.adp (+6 -7)
1 1 <%
2 2 # @author Miguel Marin (miguelmarin@viaro.net)
3 3 # @author Viaro Networks www.viaro.net
4 4 # @creation-date 2005-08-16
5 5 #
6 6 # Displays all filters as a select box to save space
7 7 %>
8 8
  9
9 10 <table border="0">
10 11 <tr>
11 12     <multiple name="filters">
12 13         <td valign="top">
13 14             <table border="0" cellspacing="0" cellpadding="2" width="100%">
14 15                 <tr>
15 16                     <td colspan="3" class="list-filter-header">
16 17                         @filters.filter_label@
17 18                         <if @filters.filter_clear_url@ not nil>
18 19                             (<a href="@filters.filter_clear_url@" title="Clear the currently selected @filters.filter_label@">clear</a>)
19 20                         </if>
20 21                     </td>
21 22                 </tr>
22 23                 <tr>
23 24                     <td>
24                           <select name="@filters.filter_label@" onchange="window.location = this.options[this.selectedIndex].value">                     <if @filters.filter_clear_url@ not nil>
25                                  <option value="@filters.filter_clear_url@"> - - - - - </option>
  25                         <select name="@filters.filter_label@" onchange="window.location = this.options[this.selectedIndex].value">                    
  26                             <if @filters.filter_clear_url@ nil>
  27                                <option value="#">- - - - -</option>
26 28                             </if>
27                               <else>
28                                  <option value=""> - - - - - </option>
29                               </else>
30 29                             <group column="filter_name">
31 30                             <if @filters.selected_p@ true>
32 31                                  <option value="@filters.url@" selected>
33 32                                      @filters.label@
34 33                                  </option>
35 34                             </if>
36 35                             <else>
37 36                                  <option value="@filters.url@">
38 37                                      @filters.label@
39 38                                  </option>
40 39                             </else>
41 40                             </group>
42 41                         </select>
43 42                     </td>
44 43                 </tr>
45 44             </table>
46 45         </td>
47 46     </multiple>
48 47 </tr>
49 48 </table>