Changeset 562 for trunk/grails-app/views
- Timestamp:
- Jun 2, 2010, 4:31:17 PM (14 years ago)
- Location:
- trunk/grails-app/views
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/appCore/manager.gsp
r560 r562 75 75 <tr class="prop"> 76 76 <td valign="top" class="name"> 77 <label>Search Index:</label> 78 </td> 79 <td valign="top" class="value"> 80 <g:link action="rebuildTextSearchIndex"> 81 Rebuild 82 </g:link> - Reindex the entire text search index. 83 <br /> 84 </td> 85 </tr> 86 87 <tr class="prop"> 88 <td valign="top" class="name"> 77 89 <label>Entity Relationship Diagram:</label> 78 90 </td> -
trunk/grails-app/views/inventoryItemDetailed/search.gsp
r554 r562 22 22 removeImgDir="images" 23 23 removeImgFile="bullet_delete.png" 24 title=" Search"/>24 title="Advanced Search"/> 25 25 26 26 <div class="paginateButtons"> … … 30 30 Results: ${inventoryItemInstanceList.size()} / ${inventoryItemInstanceTotal} 31 31 <span class="searchButtons"> 32 <filterpane:filterButton text=" Search" appliedText="Change Search" />32 <filterpane:filterButton text="Advanced" appliedText="Advanced" /> 33 33 </span> 34 34 </div> … … 178 178 179 179 <filterpane:filterPane domainBean="InventoryItem" 180 title=" Search"180 title="Advanced Search" 181 181 action="search" 182 182 class="overlayPane" … … 197 197 <div class="overlayPane" id="searchPane" style="display:none;"> 198 198 <h2>Quick Search</h2> 199 199 200 <g:form method="post" id="searchForm" name="searchForm" > 201 <g:hiddenField name="newTextSearch" value="true" /> 202 200 203 <table> 201 204 <tbody> … … 252 255 </tbody> 253 256 </table> 257 258 <table> 259 <tbody> 260 261 <tr class="prop"> 262 <td valign="top" class="name"> 263 <label for="searchText">Search:</label> 264 </td> 265 <td valign="top" class="value"> 266 <input type="text" style="width:450px" maxlength="75" id="searchText" name="searchText" value="${filterParams.searchText}"/> 267 </td> 268 </tr> 269 270 <tr class="prop"> 271 <td valign="top" class="name"> 272 </td> 273 <td valign="top" class="value"> 274 <!-- <g:checkBox name="searchName" value="${true}" ></g:checkBox> --> 275 <label for="searchName">Name,</label> 276 <!-- <g:checkBox name="searchDescription" value="${true}" ></g:checkBox> --> 277 <label for="searchDescription">Description,</label> 278 <!-- <g:checkBox name="searchComment" value="${true}" ></g:checkBox> --> 279 <label for="searchComment">Comment,</label> 280 <!-- <g:checkBox name="searchLocation" value="${true}" ></g:checkBox> --> 281 <label for="searchLocation">Location and</label> 282 <!-- <g:checkBox name="searchSpareFor" value="${true}" ></g:checkBox> --> 283 <label for="searchSpareFor">Spare For.</label> 284 </td> 285 </tr> 286 287 </tbody> 288 </table> 289 254 290 <div class="buttons"> 255 291 <span class="button"> 256 <input type="button" value="${g.message(code:'fp.tag.filterPane.button.cancel.text', default:'Cancel')}" onclick="return hideElement('searchPane');" /> 292 <g:actionSubmit class="save" value="Update" action="search" /> 293 <g:actionSubmit class="cancel" value="${g.message(code:'fp.tag.filterPane.button.cancel.text', default:'Cancel')}" onclick="return hideElement('searchPane');" /> 257 294 </span> 258 295 </div> -
trunk/grails-app/views/taskDetailed/_quickSearchPane.gsp
r503 r562 110 110 <div class="buttons"> 111 111 <span class="button"> 112 < input type="button" value="${g.message(code:'fp.tag.filterPane.button.cancel.text', default:'Cancel')}" onclick="return hideElement('searchPane');" />112 <g:actionSubmit class="cancel" value="${g.message(code:'fp.tag.filterPane.button.cancel.text', default:'Cancel')}" onclick="return hideElement('searchPane');" /> 113 113 </span> 114 114 </div>
Note: See TracChangeset
for help on using the changeset viewer.