Changeset 5903 for trunk/www/my_base/user/reset_filters.jsp
- Timestamp:
- Dec 9, 2011, 11:02:07 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/my_base/user/reset_filters.jsp
r5902 r5903 90 90 <base:body> 91 91 <h1><%=title%><base:help helpid="userpreferences.resetfilters" /></h1> 92 <form action="submit_user.jsp?ID=<%=ID%>" method="post" name="preferences" 93 onsubmit="return false;"> 94 <input type=hidden name="cmd" value="ResetFilters"> 95 92 96 <div class="content"> 93 <form action="submit_user.jsp?ID=<%=ID%>" method="post" name="preferences" 94 onsubmit="return false;"> 95 <input type=hidden name="cmd" value="ResetFilters"> 96 97 <table class="fullform smaller"> 98 <tr> 99 <th>Which list?</th> 100 <td> 101 <select name="item_type" onchange="itemTypeOnChange()" style="width: 100%;"> 102 <option value="">- all - 97 <div class="bottomborder"> 98 <table class="fullform smaller"> 99 <tr> 100 <th>Which list?</th> 101 <td> 102 <select name="item_type" onchange="itemTypeOnChange()" style="width: 100%;"> 103 <option value="">- all - 104 <% 105 for (Item item : items) 106 { 107 %> 108 <option value="<%=item.name()%>"><%=dbOnly.contains(item) ? "* " : "" %><%=item%> 103 109 <% 104 for (Item item : items) 105 { 106 %> 107 <option value="<%=item.name()%>"><%=dbOnly.contains(item) ? "* " : "" %><%=item%> 108 <% 109 } 110 %> 111 </select><br> 112 </td> 113 </tr> 114 <tr> 115 <th>Location</th> 116 <td> 117 <input type="checkbox" name="memory" id="memory" value="1" checked disabled>In-memory 118 <input type="checkbox" name="database" id="database" value="1"><label for="database">In-database</label> 119 </td> 120 </tr> 121 </table> 110 } 111 %> 112 </select><br> 113 </td> 114 </tr> 115 <tr class="double"> 116 <th>Location</th> 117 <td> 118 <input type="checkbox" name="memory" id="memory" value="1" checked disabled>In-memory<br> 119 <input type="checkbox" name="database" id="database" value="1"><label for="database">In-database</label> 120 </td> 121 </tr> 122 123 </table> 124 </div> 125 <div class="padded"> 126 * = This setting is only in the database 127 </div> 128 129 <div class="padded"> 130 Use this functionality if you are experiencing problems when listing 131 items on a list page. Try first with only the 'In-memory' option selected. 132 If that doesn't help, try the 'In-database' option. 133 </div> 122 134 123 <div class="padded">124 * = This setting is only in the database125 </div>126 127 <div class="padded">128 Use this functionality if you are experiencing problems when listing129 items on a list page. Try first with only the 'In-memory' option selected.130 If that doesn't help, try the 'In-database' option.131 </div>132 </form>133 135 </div> 136 </form> 134 137 135 138 <base:buttongroup subclass="dialogbuttons">
Note: See TracChangeset
for help on using the changeset viewer.