Ignore:
Timestamp:
Oct 20, 2009, 5:55:50 PM (15 years ago)
Author:
gav
Message:

Add filterPane to Asset and Inventory search views.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/views/inventoryItemDetailed/search.gsp

    r151 r156  
    77        <title>InventoryItem Search</title>
    88        <nav:resources override="true"/>
    9         <resource:tabView skin="tabviewCustom" />
     9        <filterpane:includes />
    1010    </head>
    1111    <body>
     
    1717            <div class="message">${flash.message}</div>
    1818            </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
    2331            <div class="list">
    2432                <table>
     
    2634                        <tr>
    2735                       
    28                                 <g:sortableColumn property="id" title="Id" />
     36                                <g:sortableColumn property="id" title="Id" params="${filterParams}" />
    2937                       
    30                                 <g:sortableColumn property="name" title="Name" />
     38                                <g:sortableColumn property="name" title="Name" params="${filterParams}" />
    3139                       
    32                                 <g:sortableColumn property="description" title="Description" />
     40                                <g:sortableColumn property="description" title="Description" params="${filterParams}" />
    3341                       
    34                                 <g:sortableColumn property="enableReorder" title="Enable Reorder" />
     42                                <g:sortableColumn property="enableReorder" title="Enable Reorder" params="${filterParams}" />
    3543                       
    36                                 <g:sortableColumn property="isActive" title="Is Active" />
     44                                <g:sortableColumn property="isActive" title="Is Active" params="${filterParams}" />
    3745
    3846                            <th></th>
     
    6674            </div>
    6775            <div class="paginateButtons">
    68                 <g:paginate total="${inventoryItemInstanceTotal}" />
     76                <g:paginate total="${inventoryItemInstanceTotal}" params="${filterParams}" />
    6977            </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 -->
    7185    </body>
    7286</html>
Note: See TracChangeset for help on using the changeset viewer.