Changeset 156 for trunk/grails-app/views/inventoryItemDetailed
- Timestamp:
- Oct 20, 2009, 5:55:50 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/inventoryItemDetailed/search.gsp
r151 r156 7 7 <title>InventoryItem Search</title> 8 8 <nav:resources override="true"/> 9 < resource:tabView skin="tabviewCustom"/>9 <filterpane:includes /> 10 10 </head> 11 11 <body> … … 17 17 <div class="message">${flash.message}</div> 18 18 </g:if> 19 Search 20 <br /> 21 <br /> 22 19 <filterpane:currentCriteria domainBean="InventoryItem" 20 action="search" 21 dateFormat="${'EEE, dd-MMM-yyyy'}" 22 removeImgDir="images" 23 removeImgFile="bullet_delete.png" 24 title="Search"/> 25 26 <div class="paginateButtons"> 27 <filterpane:filterButton text="Search" appliedText="Change Search" /> 28 Results:${inventoryItemInstanceTotal} 29 </div> 30 23 31 <div class="list"> 24 32 <table> … … 26 34 <tr> 27 35 28 <g:sortableColumn property="id" title="Id" />36 <g:sortableColumn property="id" title="Id" params="${filterParams}" /> 29 37 30 <g:sortableColumn property="name" title="Name" />38 <g:sortableColumn property="name" title="Name" params="${filterParams}" /> 31 39 32 <g:sortableColumn property="description" title="Description" />40 <g:sortableColumn property="description" title="Description" params="${filterParams}" /> 33 41 34 <g:sortableColumn property="enableReorder" title="Enable Reorder" />42 <g:sortableColumn property="enableReorder" title="Enable Reorder" params="${filterParams}" /> 35 43 36 <g:sortableColumn property="isActive" title="Is Active" />44 <g:sortableColumn property="isActive" title="Is Active" params="${filterParams}" /> 37 45 38 46 <th></th> … … 66 74 </div> 67 75 <div class="paginateButtons"> 68 <g:paginate total="${inventoryItemInstanceTotal}" />76 <g:paginate total="${inventoryItemInstanceTotal}" params="${filterParams}" /> 69 77 </div> 70 </div> 78 79 <filterpane:filterPane domainBean="InventoryItem" 80 title="Search" 81 action="search" 82 class="overlayPane" 83 excludeProperties="" /> 84 </div> <!-- end body div --> 71 85 </body> 72 86 </html>
Note: See TracChangeset
for help on using the changeset viewer.