| 
                Last change
                  on this file since 227 was
                  178,
                  checked in by gav, 16 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
           | 
      
      
        
  | 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" /> | 
|---|
 | 7 |         <title>Show LifePlan</title> | 
|---|
 | 8 |     </head> | 
|---|
 | 9 |     <body> | 
|---|
 | 10 |         <div class="nav"> | 
|---|
 | 11 |             <span class="menuButton"><g:link class="list" action="list">LifePlan List</g:link></span> | 
|---|
 | 12 |             <span class="menuButton"><g:link class="create" action="create">New LifePlan</g:link></span> | 
|---|
 | 13 |         </div> | 
|---|
 | 14 |         <div class="body"> | 
|---|
 | 15 |             <h1>Show LifePlan</h1> | 
|---|
 | 16 |             <g:if test="${flash.message}"> | 
|---|
 | 17 |             <div class="message">${flash.message}</div> | 
|---|
 | 18 |             </g:if> | 
|---|
 | 19 |             <div class="dialog"> | 
|---|
 | 20 |                 <table> | 
|---|
 | 21 |                     <tbody> | 
|---|
 | 22 |  | 
|---|
 | 23 |                      | 
|---|
 | 24 |                         <tr class="prop"> | 
|---|
 | 25 |                             <td valign="top" class="name">Id:</td> | 
|---|
 | 26 |                              | 
|---|
 | 27 |                             <td valign="top" class="value">${fieldValue(bean:lifePlanInstance, field:'id')}</td> | 
|---|
 | 28 |                              | 
|---|
 | 29 |                         </tr> | 
|---|
 | 30 |                      | 
|---|
 | 31 |                         <tr class="prop"> | 
|---|
 | 32 |                             <td valign="top" class="name">Description:</td> | 
|---|
 | 33 |                              | 
|---|
 | 34 |                             <td valign="top" class="value">${fieldValue(bean:lifePlanInstance, field:'description')}</td> | 
|---|
 | 35 |                              | 
|---|
 | 36 |                         </tr> | 
|---|
 | 37 |                      | 
|---|
 | 38 |                         <tr class="prop"> | 
|---|
 | 39 |                             <td valign="top" class="name">Is Active:</td> | 
|---|
 | 40 |                              | 
|---|
 | 41 |                             <td valign="top" class="value">${fieldValue(bean:lifePlanInstance, field:'isActive')}</td> | 
|---|
 | 42 |                              | 
|---|
 | 43 |                         </tr> | 
|---|
 | 44 |                      | 
|---|
 | 45 |                         <tr class="prop"> | 
|---|
 | 46 |                             <td valign="top" class="name">Name:</td> | 
|---|
 | 47 |                              | 
|---|
 | 48 |                             <td valign="top" class="value">${fieldValue(bean:lifePlanInstance, field:'name')}</td> | 
|---|
 | 49 |                              | 
|---|
 | 50 |                         </tr> | 
|---|
 | 51 |                      | 
|---|
 | 52 |                     </tbody> | 
|---|
 | 53 |                 </table> | 
|---|
 | 54 |             </div> | 
|---|
 | 55 |             <div class="buttons"> | 
|---|
 | 56 |                 <g:form> | 
|---|
 | 57 |                     <input type="hidden" name="id" value="${lifePlanInstance?.id}" /> | 
|---|
 | 58 |                     <span class="button"><g:actionSubmit class="edit" value="Edit" /></span> | 
|---|
 | 59 |                     <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span> | 
|---|
 | 60 |                 </g:form> | 
|---|
 | 61 |             </div> | 
|---|
 | 62 |         </div> | 
|---|
 | 63 |     </body> | 
|---|
 | 64 | </html> | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.