Changeset 124 for trunk/grails-app/views/maintenanceActionDetailed/list.gsp
- Timestamp:
- May 4, 2009, 1:59:11 PM (16 years ago)
- Location:
- trunk/grails-app/views/maintenanceActionDetailed
- Files:
-
- 1 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/maintenanceActionDetailed/list.gsp
r122 r124 24 24 <g:sortableColumn property="id" title="Id" /> 25 25 26 <th>System Section</th> 26 <th>Action</th> 27 28 <th>Planned Maintenance</th> 27 29 28 30 <th>Asset</th> … … 31 33 32 34 <th>Assembly</th> 33 34 <th>Sub Assembly</th>35 36 <th></th> 35 37 36 38 </tr> … … 38 40 <tbody> 39 41 <g:each in="${maintenanceActionInstanceList}" status="i" var="maintenanceActionInstance"> 40 <tr class="${(i % 2) == 0 ? ' odd' : 'even'}">41 42 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/maintenanceActionDetailed/show/${maintenanceActionInstance.id}"'/> 43 42 44 <td><g:link action="show" id="${maintenanceActionInstance.id}">${fieldValue(bean:maintenanceActionInstance, field:'id')}</g:link></td> 43 44 <td>${fieldValue(bean:maintenanceActionInstance, field:'systemSection')}</td> 45 46 <td>${fieldValue(bean:maintenanceActionInstance, field:'maintenanceAction')}</td> 47 48 <td>${fieldValue(bean:maintenanceActionInstance, field:'plannedMaintenance')}</td> 45 49 46 50 <td>${fieldValue(bean:maintenanceActionInstance, field:'asset')}</td> … … 50 54 <td>${fieldValue(bean:maintenanceActionInstance, field:'assembly')}</td> 51 55 52 <td>${fieldValue(bean:maintenanceActionInstance, field:'subAssembly')}</td> 53 56 <td> 57 <g:link action="show" id="${maintenanceActionInstance.id}"> 58 <img src="${createLinkTo(dir:'images/skin',file:'database_table.png')}" alt="Show" /> 59 </g:link> 60 </td> 61 54 62 </tr> 55 63 </g:each>
Note: See TracChangeset
for help on using the changeset viewer.