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