Changeset 124 for trunk/grails-app/views/taskDetailed/list.gsp
- Timestamp:
- May 4, 2009, 1:59:11 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/taskDetailed/list.gsp
r110 r124 38 38 <tbody> 39 39 <g:each in="${taskInstanceList}" status="i" var="taskInstance"> 40 <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">41 40 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'/> 41 42 42 <td>${fieldValue(bean:taskInstance, field:'id')}</td> 43 43 … … 64 64 </div> 65 65 <div class="paginateButtons"> 66 <g:paginate total="${ Task.count()}" />66 <g:paginate total="${taskInstanceTotal}" /> 67 67 </div> 68 68 </div>
Note: See TracChangeset
for help on using the changeset viewer.