Changeset 133 for trunk/grails-app/views/entryDetailed
- Timestamp:
- May 8, 2009, 11:51:25 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/entryDetailed/list.gsp
r98 r133 32 32 <g:sortableColumn property="enteredBy" title="Entered By" /> 33 33 34 <th>Edit</th> 35 36 <th>Show</th> 34 <th></th> 37 35 38 36 </tr> … … 40 38 <tbody> 41 39 <g:each in="${entryInstanceList}" status="i" var="entryInstance"> 42 <tr class="${(i % 2) == 0 ? ' odd' : 'even'}">43 40 <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/entryDetailed/show/${entryInstance.id}"'/> 41 44 42 <td>${fieldValue(bean:entryInstance, field:'id')}</td> 45 43 … … 52 50 <td>${fieldValue(bean:entryInstance, field:'enteredBy')}</td> 53 51 54 <td><g:link action="edit" id="${entryInstance.id}">Edit</g:link></td> 55 56 <td><g:link action="show" id="${entryInstance.id}">Show</g:link></td> 52 <td> 53 <g:link action="show" id="${entryInstance.id}"> 54 <img src="${createLinkTo(dir:'images/skin',file:'database_table.png')}" alt="Show" /> 55 </g:link> 56 </td> 57 57 58 58 </tr>
Note: See TracChangeset
for help on using the changeset viewer.