- Timestamp:
- May 13, 2009, 7:36:01 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/taskRecurringScheduleDetailed/list.gsp
r134 r135 24 24 <g:sortableColumn property="id" title="Id" /> 25 25 26 <g:sortableColumn property=" lastGeneratedDate" title="Last Generated Date" />26 <g:sortableColumn property="taskId" title="Recurring Schedule for Task" /> 27 27 28 <th>Last Generated Sub Task</th> 29 28 <g:sortableColumn property="recurEvery" title="Recur Every" /> 29 30 <g:sortableColumn property="period" title="Period" /> 31 30 32 <g:sortableColumn property="isEnabled" title="Is Enabled" /> 31 32 <g:sortableColumn property="nextDueDate" title="Next Due Date" /> 33 34 <th>Period</th> 33 34 <th></th> 35 35 36 36 </tr> … … 38 38 <tbody> 39 39 <g:each in="${taskRecurringScheduleInstanceList}" status="i" var="taskRecurringScheduleInstance"> 40 <tr class="${(i % 2) == 0 ? 'odd' : 'even'}"> 40 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'/> 41 41 42 42 43 <td><g:link action="show" id="${taskRecurringScheduleInstance.id}">${fieldValue(bean:taskRecurringScheduleInstance, field:'id')}</g:link></td> 43 44 44 <td>${fieldValue(bean:taskRecurringScheduleInstance, field:' lastGeneratedDate')}</td>45 <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'task')}</td> 45 46 46 <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'lastGeneratedSubTask')}</td> 47 <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'recurEvery')}</td> 48 49 <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'period')}</td> 47 50 48 51 <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'isEnabled')}</td> 49 50 <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'nextDueDate')}</td> 51 52 <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'period')}</td> 52 53 <td> 54 <g:link action="show" id="${taskRecurringScheduleInstance.id}"> 55 <img src="${createLinkTo(dir:'images/skin',file:'database_go.png')}" alt="Show" /> 56 </g:link> 57 </td> 53 58 54 59 </tr>
Note: See TracChangeset
for help on using the changeset viewer.