Changeset 556 for trunk/grails-app/views/taskGroupDetailed/list.gsp
- Timestamp:
- May 31, 2010, 7:02:23 PM (15 years ago)
- Location:
- trunk/grails-app/views/taskGroupDetailed
- Files:
-
- 1 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/taskGroupDetailed/list.gsp
r555 r556 6 6 <meta name="layout" content="main" /> 7 7 <title>TaskGroup List</title> 8 <nav:resources override="true"/> 8 9 </head> 9 10 <body> 10 11 <div class="nav"> 11 < span class="menuButton"><g:link class="create" action="create">New TaskGroup</g:link></span>12 <nav:renderSubItems group="navAlt"/> 12 13 </div> 13 14 <div class="body"> 14 <h1>TaskGroup List</h1>15 15 <g:render template="/shared/messages" /> 16 16 <div class="list"> … … 26 26 27 27 <g:sortableColumn property="isActive" title="Is Active" /> 28 29 <th></th> 28 30 29 31 </tr> … … 31 33 <tbody> 32 34 <g:each in="${taskGroupInstanceList}" status="i" var="taskGroupInstance"> 33 <tr class="${(i % 2) == 0 ? ' odd' : 'even'}">35 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/> 34 36 35 <td><g:link action="show" id="${taskGroupInstance.id}">${fieldValue(bean:taskGroupInstance, field:'id')}</g:link></td> 37 <td onclick='window.location = "${request.getContextPath()}/taskGroupDetailed/show/${taskGroupInstance.id}"'> 38 ${fieldValue(bean:taskGroupInstance, field:'id')} 39 </td> 36 40 37 <td>${fieldValue(bean:taskGroupInstance, field:'name')}</td> 41 <td onclick='window.location = "${request.getContextPath()}/taskGroupDetailed/show/${taskGroupInstance.id}"'> 42 ${fieldValue(bean:taskGroupInstance, field:'name')} 43 </td> 38 44 39 <td>${fieldValue(bean:taskGroupInstance, field:'description')}</td> 45 <td onclick='window.location = "${request.getContextPath()}/taskGroupDetailed/show/${taskGroupInstance.id}"'> 46 ${fieldValue(bean:taskGroupInstance, field:'description')} 47 </td> 40 48 41 <td>${fieldValue(bean:taskGroupInstance, field:'isActive')}</td> 49 <td onclick='window.location = "${request.getContextPath()}/taskGroupDetailed/show/${taskGroupInstance.id}"'> 50 ${fieldValue(bean:taskGroupInstance, field:'isActive')} 51 </td> 52 53 <td class="notClickable"> 54 <g:link action="show" id="${taskGroupInstance.id}"> 55 <img src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" /> 56 </g:link> 57 </td> 42 58 43 59 </tr>
Note: See TracChangeset
for help on using the changeset viewer.