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