Changeset 498 for trunk/grails-app/views/assetDetailed
- Timestamp:
- Apr 19, 2010, 2:07:48 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/assetDetailed/search.gsp
r467 r498 116 116 <tbody> 117 117 <g:each in="${assetInstanceList}" status="i" var="assetInstance"> 118 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/assetDetailed/show/${assetInstance.id}"'/>118 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/> 119 119 120 <td>${fieldValue(bean:assetInstance, field:'id')}</td> 120 <td onclick='window.location = "${request.getContextPath()}/assetDetailed/show/${assetInstance.id}"'> 121 ${fieldValue(bean:assetInstance, field:'id')} 122 </td> 121 123 122 <td>${fieldValue(bean:assetInstance, field:'name')}</td> 124 <td onclick='window.location = "${request.getContextPath()}/assetDetailed/show/${assetInstance.id}"'> 125 ${fieldValue(bean:assetInstance, field:'name')} 126 </td> 123 127 124 <td>${fieldValue(bean:assetInstance, field:'description')}</td> 128 <td onclick='window.location = "${request.getContextPath()}/assetDetailed/show/${assetInstance.id}"'> 129 ${fieldValue(bean:assetInstance, field:'description')} 130 </td> 125 131 126 <td>${fieldValue(bean:assetInstance, field:'isActive')}</td> 132 <td onclick='window.location = "${request.getContextPath()}/assetDetailed/show/${assetInstance.id}"'> 133 ${fieldValue(bean:assetInstance, field:'isActive')} 134 </td> 127 135 128 <td>${fieldValue(bean:assetInstance, field:'section')}</td> 136 <td onclick='window.location = "${request.getContextPath()}/assetDetailed/show/${assetInstance.id}"'> 137 ${fieldValue(bean:assetInstance, field:'section')} 138 </td> 129 139 130 <td >140 <td class="notClickable"> 131 141 <g:link action="show" id="${assetInstance.id}"> 132 142 <img src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Note: See TracChangeset
for help on using the changeset viewer.