Index: trunk/grails-app/views/costCodeDetailed/list.gsp
===================================================================
--- trunk/grails-app/views/costCodeDetailed/list.gsp	(revision 441)
+++ trunk/grails-app/views/costCodeDetailed/list.gsp	(revision 498)
@@ -33,15 +33,23 @@
                     <tbody>
                     <g:each in="${costCodeInstanceList}" status="i" var="costCodeInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/costCodeDetailed/show/${costCodeInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:costCodeInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/costCodeDetailed/show/${costCodeInstance.id}"'>
+                                ${fieldValue(bean:costCodeInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:costCodeInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/costCodeDetailed/show/${costCodeInstance.id}"'>
+                                ${fieldValue(bean:costCodeInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:costCodeInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/costCodeDetailed/show/${costCodeInstance.id}"'>
+                                ${fieldValue(bean:costCodeInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:costCodeInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/costCodeDetailed/show/${costCodeInstance.id}"'>
+                                ${fieldValue(bean:costCodeInstance, field:'isActive')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${costCodeInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
