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