source: trunk/grails-app/views/extendedAttributeTypeDetailed/list.gsp @ 836

Last change on this file since 836 was 836, checked in by gav, 13 years ago

Fix early closed table row on clickableOdd/clickableEven list tables.

File size: 3.2 KB
RevLine 
[122]1
2
3<html>
4    <head>
5        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
6        <meta name="layout" content="main" />
[268]7        <title>ExtendedAttributeType List</title>
[386]8        <nav:resources override="true"/>
[122]9    </head>
10    <body>
11        <div class="nav">
[386]12            <nav:renderSubItems group="navAlt"/>
[122]13        </div>
14        <div class="body">
15            <g:if test="${flash.message}">
16            <div class="message">${flash.message}</div>
17            </g:if>
18            <div class="list">
19                <table>
20                    <thead>
21                        <tr>
22                       
[386]23                            <g:sortableColumn property="id" title="Id" />
24
25                            <g:sortableColumn property="name" title="Name" />
26
27                            <g:sortableColumn property="description" title="Description" />
28
29                            <g:sortableColumn property="isActive" title="Is Active" />
30
31                            <th></th>
[122]32                       
33                        </tr>
34                    </thead>
35                    <tbody>
[268]36                    <g:each in="${extendedAttributeTypeInstanceList}" status="i" var="extendedAttributeTypeInstance">
[836]37                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}">
[122]38                       
[498]39                            <td onclick='window.location = "${request.getContextPath()}/extendedAttributeTypeDetailed/show/${extendedAttributeTypeInstance.id}"'>
40                                ${fieldValue(bean:extendedAttributeTypeInstance, field:'id')}
41                            </td>
[122]42                       
[498]43                            <td onclick='window.location = "${request.getContextPath()}/extendedAttributeTypeDetailed/show/${extendedAttributeTypeInstance.id}"'>
44                                ${fieldValue(bean:extendedAttributeTypeInstance, field:'name')}
45                            </td>
[122]46                       
[498]47                            <td onclick='window.location = "${request.getContextPath()}/extendedAttributeTypeDetailed/show/${extendedAttributeTypeInstance.id}"'>
48                                ${fieldValue(bean:extendedAttributeTypeInstance, field:'description')}
49                            </td>
[122]50                       
[498]51                            <td onclick='window.location = "${request.getContextPath()}/extendedAttributeTypeDetailed/show/${extendedAttributeTypeInstance.id}"'>
52                                ${fieldValue(bean:extendedAttributeTypeInstance, field:'isActive')}
53                            </td>
[386]54                           
[498]55                            <td class="notClickable">
[386]56                                <g:link action="show" id="${extendedAttributeTypeInstance.id}">
57                                    <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
58                                </g:link>
59                            </td>
[122]60                       
61                        </tr>
62                    </g:each>
63                    </tbody>
64                </table>
65            </div>
66            <div class="paginateButtons">
[268]67                <g:paginate total="${extendedAttributeTypeInstanceTotal}" />
[122]68            </div>
69        </div>
70    </body>
71</html>
Note: See TracBrowser for help on using the repository browser.