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

Last change on this file since 178 was 178, checked in by gav, 14 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.6 KB
Line 
1
2
3<html>
4    <head>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6        <meta name="layout" content="main" />
7        <title>Entry List</title>
8    </head>
9    <body>
10        <div class="nav">
11            <span class="menuButton"><g:link class="create" action="create">New Entry</g:link></span>
12        </div>
13        <div class="body">
14            <h1>Entry List</h1>
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                       
25                                <th>Task</th>
26                           
27                                <g:sortableColumn property="comment" title="Comment" />
28                       
29                                <g:sortableColumn property="dateDone" title="Date Done" />
30                       
31                                <g:sortableColumn property="enteredBy" title="Entered By" />
32
33                            <th></th>
34
35                        </tr>
36                    </thead>
37                    <tbody>
38                    <g:each in="${entryInstanceList}" status="i" var="entryInstance">
39                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/entryDetailed/show/${entryInstance.id}"'/>
40
41                            <td>${fieldValue(bean:entryInstance, field:'id')}</td>
42                       
43                            <td>${fieldValue(bean:entryInstance, field:'task')}</td>
44                       
45                            <td>${fieldValue(bean:entryInstance, field:'comment')}</td>
46                       
47                            <td>${fieldValue(bean:entryInstance, field:'dateDone')}</td>
48                       
49                            <td>${fieldValue(bean:entryInstance, field:'enteredBy')}</td>
50
51                            <td>
52                                <g:link action="show" id="${entryInstance.id}">
53                                    <img  src="${resource(dir:'images/skin',file:'database_table.png')}" alt="Show" />
54                                </g:link>
55                            </td>
56                       
57                        </tr>
58                    </g:each>
59                    </tbody>
60                </table>
61            </div>
62            <div class="paginateButtons">
63                <g:paginate total="${Entry.count()}" />
64            </div>
65        </div>
66    </body>
67</html>
Note: See TracBrowser for help on using the repository browser.