source: trunk/grails-app/views/inventoryLocationDetailed/list.gsp @ 178

Last change on this file since 178 was 178, checked in by gav, 15 years ago

Resolve ticket #12 again.
Turn query cache on again since this did not resolve the problem.
Implement fix as per http://jira.codehaus.org/browse/GRAILS-5111, add flush:true to save.
Adjust templates to include above and remove home url.
Re-generate all non detailed views and controllers.
Manually add flush:true and remove home url to detailed views and controllers.

File size: 2.2 KB
RevLine 
[125]1
2
3<html>
4    <head>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6        <meta name="layout" content="main" />
[175]7        <title>InventoryLocation List</title>
[125]8    </head>
9    <body>
10        <div class="nav">
[175]11            <span class="menuButton"><g:link class="create" action="create">New InventoryLocation</g:link></span>
[125]12        </div>
13        <div class="body">
[175]14            <h1>InventoryLocation List</h1>
[125]15            <g:if test="${flash.message}">
16            <div class="message">${flash.message}</div>
17            </g:if>
18            <div class="list">
19                <table>
20                    <thead>
21                        <tr>
22                       
23                                <g:sortableColumn property="id" title="Id" />
24                       
[175]25                                <g:sortableColumn property="name" title="Name" />
[125]26                       
27                                <th>Inventory Store</th>
28                           
29                                <g:sortableColumn property="isActive" title="Is Active" />
30                       
31                        </tr>
32                    </thead>
33                    <tbody>
[175]34                    <g:each in="${inventoryLocationInstanceList}" status="i" var="inventoryLocationInstance">
[125]35                        <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
36                       
[175]37                            <td><g:link action="show" id="${inventoryLocationInstance.id}">${fieldValue(bean:inventoryLocationInstance, field:'id')}</g:link></td>
[125]38                       
[175]39                            <td>${fieldValue(bean:inventoryLocationInstance, field:'name')}</td>
[125]40                       
[175]41                            <td>${fieldValue(bean:inventoryLocationInstance, field:'inventoryStore')}</td>
[125]42                       
[175]43                            <td>${fieldValue(bean:inventoryLocationInstance, field:'isActive')}</td>
[125]44                       
45                        </tr>
46                    </g:each>
47                    </tbody>
48                </table>
49            </div>
50            <div class="paginateButtons">
[175]51                <g:paginate total="${inventoryLocationInstanceTotal}" />
[125]52            </div>
53        </div>
54    </body>
55</html>
Note: See TracBrowser for help on using the repository browser.