Index: trunk/grails-app/views/departmentDetailed/list.gsp
===================================================================
--- trunk/grails-app/views/departmentDetailed/list.gsp	(revision 333)
+++ trunk/grails-app/views/departmentDetailed/list.gsp	(revision 339)
@@ -28,4 +28,6 @@
                         
                    	        <g:sortableColumn property="isActive" title="Is Active" />
+
+                            <th></th>
                         
                         </tr>
@@ -33,7 +35,7 @@
                     <tbody>
                     <g:each in="${departmentInstanceList}" status="i" var="departmentInstance">
-                        <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/departmentDetailed/show/${departmentInstance.id}"'/>
                         
-                            <td><g:link action="show" id="${departmentInstance.id}">${fieldValue(bean:departmentInstance, field:'id')}</g:link></td>
+                            <td>${fieldValue(bean:departmentInstance, field:'id')}</td>
                         
                             <td>${fieldValue(bean:departmentInstance, field:'name')}</td>
@@ -42,4 +44,10 @@
                         
                             <td>${fieldValue(bean:departmentInstance, field:'isActive')}</td>
+
+                            <td>
+                                <g:link action="show" id="${departmentInstance.id}">
+                                    <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
+                                </g:link>
+                            </td>
                         
                         </tr>
