Last change
on this file since 480 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:
1.9 KB
|
Rev | Line | |
---|
[118] | 1 | |
---|
| 2 | |
---|
| 3 | <html> |
---|
| 4 | <head> |
---|
| 5 | <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> |
---|
| 6 | <meta name="layout" content="main" /> |
---|
[122] | 7 | <title>Period List</title> |
---|
[118] | 8 | </head> |
---|
| 9 | <body> |
---|
| 10 | <div class="nav"> |
---|
[122] | 11 | <span class="menuButton"><g:link class="create" action="create">New Period</g:link></span> |
---|
[118] | 12 | </div> |
---|
| 13 | <div class="body"> |
---|
[122] | 14 | <h1>Period List</h1> |
---|
[118] | 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 | <g:sortableColumn property="isActive" title="Is Active" /> |
---|
| 26 | |
---|
[122] | 27 | <g:sortableColumn property="period" title="Period" /> |
---|
| 28 | |
---|
[118] | 29 | </tr> |
---|
| 30 | </thead> |
---|
| 31 | <tbody> |
---|
[122] | 32 | <g:each in="${periodInstanceList}" status="i" var="periodInstance"> |
---|
[118] | 33 | <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> |
---|
| 34 | |
---|
[122] | 35 | <td><g:link action="show" id="${periodInstance.id}">${fieldValue(bean:periodInstance, field:'id')}</g:link></td> |
---|
[118] | 36 | |
---|
[122] | 37 | <td>${fieldValue(bean:periodInstance, field:'isActive')}</td> |
---|
[118] | 38 | |
---|
[122] | 39 | <td>${fieldValue(bean:periodInstance, field:'period')}</td> |
---|
[118] | 40 | |
---|
| 41 | </tr> |
---|
| 42 | </g:each> |
---|
| 43 | </tbody> |
---|
| 44 | </table> |
---|
| 45 | </div> |
---|
| 46 | <div class="paginateButtons"> |
---|
[122] | 47 | <g:paginate total="${periodInstanceTotal}" /> |
---|
[118] | 48 | </div> |
---|
| 49 | </div> |
---|
| 50 | </body> |
---|
| 51 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.