Changeset 498 for trunk/grails-app/views/manufacturerDetailed
- Timestamp:
- Apr 19, 2010, 2:07:48 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/manufacturerDetailed/list.gsp
r374 r498 37 37 <tbody> 38 38 <g:each in="${manufacturerInstanceList}" status="i" var="manufacturerInstance"> 39 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'/>39 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/> 40 40 41 <td>${fieldValue(bean:manufacturerInstance, field:'id')}</td> 41 <td onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'> 42 ${fieldValue(bean:manufacturerInstance, field:'id')} 43 </td> 42 44 43 <td>${fieldValue(bean:manufacturerInstance, field:'name')}</td> 45 <td onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'> 46 ${fieldValue(bean:manufacturerInstance, field:'name')} 47 </td> 44 48 45 <td>${fieldValue(bean:manufacturerInstance, field:'description')}</td> 49 <td onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'> 50 ${fieldValue(bean:manufacturerInstance, field:'description')} 51 </td> 46 52 47 <td>${fieldValue(bean:manufacturerInstance, field:'isActive')}</td> 53 <td onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'> 54 ${fieldValue(bean:manufacturerInstance, field:'isActive')} 55 </td> 48 56 49 <td>${fieldValue(bean:manufacturerInstance, field:'manufacturerType')}</td> 57 <td onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'> 58 ${fieldValue(bean:manufacturerInstance, field:'manufacturerType')} 59 </td> 50 60 51 <td >61 <td class="notClickable"> 52 62 <g:link action="show" id="${manufacturerInstance.id}"> 53 63 <img src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Note: See TracChangeset
for help on using the changeset viewer.