Index: /trunk/grails-app/views/addressDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/addressDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/addressDetailed/list.gsp	(revision 498)
@@ -36,19 +36,31 @@
                     <tbody>
                     <g:each in="${addressInstanceList}" status="i" var="addressInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/addressDetailed/show/${addressInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:addressInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/addressDetailed/show/${addressInstance.id}"'>
+                                ${fieldValue(bean:addressInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:addressInstance, field:'street1')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/addressDetailed/show/${addressInstance.id}"'>
+                                ${fieldValue(bean:addressInstance, field:'street1')}
+                            </td>
                         
-                            <td>${fieldValue(bean:addressInstance, field:'street2')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/addressDetailed/show/${addressInstance.id}"'>
+                                ${fieldValue(bean:addressInstance, field:'street2')}
+                            </td>
                         
-                            <td>${fieldValue(bean:addressInstance, field:'city')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/addressDetailed/show/${addressInstance.id}"'>
+                                ${fieldValue(bean:addressInstance, field:'city')}
+                            </td>
                         
-                            <td>${fieldValue(bean:addressInstance, field:'state')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/addressDetailed/show/${addressInstance.id}"'>
+                                ${fieldValue(bean:addressInstance, field:'state')}
+                            </td>
                         
-                            <td>${fieldValue(bean:addressInstance, field:'postCode')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/addressDetailed/show/${addressInstance.id}"'>
+                                ${fieldValue(bean:addressInstance, field:'postCode')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${addressInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/assetDetailed/search.gsp
===================================================================
--- /trunk/grails-app/views/assetDetailed/search.gsp	(revision 497)
+++ /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" />
Index: /trunk/grails-app/views/assetSubItemDetailed/search.gsp
===================================================================
--- /trunk/grails-app/views/assetSubItemDetailed/search.gsp	(revision 497)
+++ /trunk/grails-app/views/assetSubItemDetailed/search.gsp	(revision 498)
@@ -95,15 +95,23 @@
                         <tbody>
                         <g:each in="${assetSubItemInstanceList}" status="i" var="assetSubItemInstance">
-                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/assetSubItemDetailed/show/${assetSubItemInstance.id}"'/>
+                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                             
-                                <td>${fieldValue(bean:assetSubItemInstance, field:'id')}</td>
+                                <td onclick='window.location = "${request.getContextPath()}/assetSubItemDetailed/show/${assetSubItemInstance.id}"'>
+                                    ${fieldValue(bean:assetSubItemInstance, field:'id')}
+                                </td>
 
-                                <td>${fieldValue(bean:assetSubItemInstance, field:'name')}</td>
+                                <td onclick='window.location = "${request.getContextPath()}/assetSubItemDetailed/show/${assetSubItemInstance.id}"'>
+                                    ${fieldValue(bean:assetSubItemInstance, field:'name')}
+                                </td>
 
-                                <td>${fieldValue(bean:assetSubItemInstance, field:'description')}</td>
+                                <td onclick='window.location = "${request.getContextPath()}/assetSubItemDetailed/show/${assetSubItemInstance.id}"'>
+                                    ${fieldValue(bean:assetSubItemInstance, field:'description')}
+                                </td>
 
-                                <td>${fieldValue(bean:assetSubItemInstance, field:'isActive')}</td>
+                                <td onclick='window.location = "${request.getContextPath()}/assetSubItemDetailed/show/${assetSubItemInstance.id}"'>
+                                    ${fieldValue(bean:assetSubItemInstance, field:'isActive')}
+                                </td>
 
-                                <td>
+                                <td class="notClickable">
                                     <g:link action="show" id="${assetSubItemInstance.id}">
                                         <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/costCodeDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/costCodeDetailed/list.gsp	(revision 497)
+++ /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" />
Index: /trunk/grails-app/views/departmentDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/departmentDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/departmentDetailed/list.gsp	(revision 498)
@@ -33,15 +33,23 @@
                     <tbody>
                     <g:each in="${departmentInstanceList}" status="i" var="departmentInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/departmentDetailed/show/${departmentInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:departmentInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/departmentDetailed/show/${departmentInstance.id}"'>
+                                ${fieldValue(bean:departmentInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:departmentInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/departmentDetailed/show/${departmentInstance.id}"'>
+                                ${fieldValue(bean:departmentInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:departmentInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/departmentDetailed/show/${departmentInstance.id}"'>
+                                ${fieldValue(bean:departmentInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:departmentInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/departmentDetailed/show/${departmentInstance.id}"'>
+                                ${fieldValue(bean:departmentInstance, field:'isActive')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${departmentInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/extendedAttributeTypeDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/extendedAttributeTypeDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/extendedAttributeTypeDetailed/list.gsp	(revision 498)
@@ -35,15 +35,23 @@
                     <tbody>
                     <g:each in="${extendedAttributeTypeInstanceList}" status="i" var="extendedAttributeTypeInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/extendedAttributeTypeDetailed/show/${extendedAttributeTypeInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:extendedAttributeTypeInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/extendedAttributeTypeDetailed/show/${extendedAttributeTypeInstance.id}"'>
+                                ${fieldValue(bean:extendedAttributeTypeInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:extendedAttributeTypeInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/extendedAttributeTypeDetailed/show/${extendedAttributeTypeInstance.id}"'>
+                                ${fieldValue(bean:extendedAttributeTypeInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:extendedAttributeTypeInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/extendedAttributeTypeDetailed/show/${extendedAttributeTypeInstance.id}"'>
+                                ${fieldValue(bean:extendedAttributeTypeInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:extendedAttributeTypeInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/extendedAttributeTypeDetailed/show/${extendedAttributeTypeInstance.id}"'>
+                                ${fieldValue(bean:extendedAttributeTypeInstance, field:'isActive')}
+                            </td>
                             
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${extendedAttributeTypeInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/inventoryGroupDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/inventoryGroupDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/inventoryGroupDetailed/list.gsp	(revision 498)
@@ -35,15 +35,23 @@
                     <tbody>
                     <g:each in="${inventoryGroupInstanceList}" status="i" var="inventoryGroupInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/inventoryGroupDetailed/show/${inventoryGroupInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:inventoryGroupInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryGroupDetailed/show/${inventoryGroupInstance.id}"'>
+                                ${fieldValue(bean:inventoryGroupInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryGroupInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryGroupDetailed/show/${inventoryGroupInstance.id}"'>
+                                ${fieldValue(bean:inventoryGroupInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryGroupInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryGroupDetailed/show/${inventoryGroupInstance.id}"'>
+                                ${fieldValue(bean:inventoryGroupInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryGroupInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryGroupDetailed/show/${inventoryGroupInstance.id}"'>
+                                ${fieldValue(bean:inventoryGroupInstance, field:'isActive')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${inventoryGroupInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/inventoryItemDetailed/search.gsp
===================================================================
--- /trunk/grails-app/views/inventoryItemDetailed/search.gsp	(revision 497)
+++ /trunk/grails-app/views/inventoryItemDetailed/search.gsp	(revision 498)
@@ -129,5 +129,5 @@
                             <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" />
 
-                                <td class='gallery'>
+                                <td class='notClickable'>
                                     <g:if test="${inventoryItemInstance.picture}" >
                                         <wa:pictureLightboxAnchor picture="${inventoryItemInstance.picture}"
@@ -155,5 +155,5 @@
                                 </td>
 
-                                <td>
+                                <td class="notClickable">
                                     <g:link action="show" id="${inventoryItemInstance.id}">
                                         <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/inventoryItemDetailed/show.gsp
===================================================================
--- /trunk/grails-app/views/inventoryItemDetailed/show.gsp	(revision 497)
+++ /trunk/grails-app/views/inventoryItemDetailed/show.gsp	(revision 498)
@@ -353,11 +353,20 @@
                                     <tbody>
                                         <g:each in="${inventoryMovementList}" status="i" var="movements">
-                                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${movements.id}"'/>
-
-                                                <td>${fieldValue(bean:movements, field:'quantity')}</td>
-                                                <td>${fieldValue(bean:movements, field:'inventoryMovementType')}</td>
-                                                <td><g:formatDate date="${movements.date}" format="EEE, dd-MMM-yyyy"/></td>
-                                                <td>${fieldValue(bean:movements, field:'person')}</td>
-                                                <td>
+                                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
+
+                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${movements.id}"'>
+                                                    ${fieldValue(bean:movements, field:'quantity')}
+                                                </td>
+                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${movements.id}"'>
+                                                    ${fieldValue(bean:movements, field:'inventoryMovementType')}
+                                                </td>
+                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${movements.id}"'>
+                                                    <g:formatDate date="${movements.date}" format="EEE, dd-MMM-yyyy"/>
+                                                </td>
+                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${movements.id}"'>
+                                                    ${fieldValue(bean:movements, field:'person')}
+                                                </td>
+
+                                                <td class="notClickable">
                                                     <g:link controller="inventoryMovementDetailed" action="show" id="${movements.id}">
                                                         <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
@@ -466,5 +475,5 @@
                                                     ${fieldValue(bean:purchase, field:'inventoryItemPurchaseType')}
                                                 </td>
-                                                <td>
+                                                <td class="notClickable">
                                                     <g:link controller="inventoryItemPurchaseDetailed" action="show" id="${purchase.id}">
                                                         <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" title="Show" />
@@ -473,5 +482,5 @@
                                                 <g:if test="${purchase.inventoryItemPurchaseType.id == 1}">
                                                     <g:if test="${!purchase.receivedComplete}">
-                                                        <td>
+                                                        <td class="notClickable">
                                                             <g:link controller="inventoryItemPurchaseDetailed" action="receive" id="${purchase.id}">
                                                                 <img  src="${resource(dir:'images/skin',file:'basket_put.png')}" alt="Receive" title="Receive" />
@@ -480,9 +489,9 @@
                                                     </g:if>
                                                     <g:else>
-                                                        <td>
+                                                        <td class="notClickable">
                                                         </td>
                                                     </g:else>
                                                     <g:if test="${!purchase.invoicePaymentApproved}">
-                                                        <td>
+                                                        <td class="notClickable">
                                                             <g:link controller="inventoryItemPurchaseDetailed" action="approveInvoicePayment" id="${purchase.id}">
                                                                 <img  src="${resource(dir:'images/skin',file:'tick.png')}" alt="Approve" title="Approve Payment" />
@@ -491,12 +500,12 @@
                                                     </g:if>
                                                     <g:else>
-                                                        <td>
+                                                        <td class="notClickable">
                                                         </td>
                                                     </g:else>
                                                 </g:if>
                                                 <g:else>
-                                                    <td>
+                                                    <td class="notClickable">
                                                     </td>
-                                                    <td>
+                                                    <td class="notClickable">
                                                     </td>
                                                 </g:else>
Index: /trunk/grails-app/views/inventoryItemPurchaseDetailed/search.gsp
===================================================================
--- /trunk/grails-app/views/inventoryItemPurchaseDetailed/search.gsp	(revision 497)
+++ /trunk/grails-app/views/inventoryItemPurchaseDetailed/search.gsp	(revision 498)
@@ -132,5 +132,5 @@
                                         ${fieldValue(bean:purchase, field:'inventoryItemPurchaseType')}
                                     </td>
-                                    <td>
+                                    <td class="notClickable">
                                         <g:link controller="inventoryItemPurchaseDetailed" action="show" id="${purchase.id}">
                                             <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" title="Show" />
@@ -139,5 +139,5 @@
                                     <g:if test="${purchase.inventoryItemPurchaseType.id == 1}">
                                         <g:if test="${!purchase.receivedComplete}">
-                                            <td>
+                                            <td class="notClickable">
                                                 <g:link controller="inventoryItemPurchaseDetailed" action="receive" id="${purchase.id}">
                                                     <img  src="${resource(dir:'images/skin',file:'basket_put.png')}" alt="Receive" title="Receive" />
@@ -146,9 +146,9 @@
                                         </g:if>
                                         <g:else>
-                                            <td>
+                                            <td class="notClickable">
                                             </td>
                                         </g:else>
                                         <g:if test="${!purchase.invoicePaymentApproved}">
-                                            <td>
+                                            <td class="notClickable">
                                                 <g:link controller="inventoryItemPurchaseDetailed" action="approveInvoicePayment" id="${purchase.id}">
                                                     <img  src="${resource(dir:'images/skin',file:'tick.png')}" alt="Approve" title="Approve Payment" />
@@ -157,12 +157,12 @@
                                         </g:if>
                                         <g:else>
-                                            <td>
+                                            <td class="notClickable">
                                             </td>
                                         </g:else>
                                     </g:if>
                                     <g:else>
-                                        <td>
+                                        <td class="notClickable">
                                         </td>
-                                        <td>
+                                        <td class="notClickable">
                                         </td>
                                     </g:else>
Index: /trunk/grails-app/views/inventoryLocationDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/inventoryLocationDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/inventoryLocationDetailed/list.gsp	(revision 498)
@@ -35,16 +35,24 @@
                     <tbody>
                     <g:each in="${inventoryLocationInstanceList}" status="i" var="inventoryLocationInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/inventoryLocationDetailed/show/${inventoryLocationInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
 
                         
-                            <td>${fieldValue(bean:inventoryLocationInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryLocationDetailed/show/${inventoryLocationInstance.id}"'>
+                                ${fieldValue(bean:inventoryLocationInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryLocationInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryLocationDetailed/show/${inventoryLocationInstance.id}"'>
+                                ${fieldValue(bean:inventoryLocationInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryLocationInstance, field:'inventoryStore')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryLocationDetailed/show/${inventoryLocationInstance.id}"'>
+                                ${fieldValue(bean:inventoryLocationInstance, field:'inventoryStore')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryLocationInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryLocationDetailed/show/${inventoryLocationInstance.id}"'>
+                                ${fieldValue(bean:inventoryLocationInstance, field:'isActive')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${inventoryLocationInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/inventoryMovementDetailed/listInventoryMovements.gsp
===================================================================
--- /trunk/grails-app/views/inventoryMovementDetailed/listInventoryMovements.gsp	(revision 497)
+++ /trunk/grails-app/views/inventoryMovementDetailed/listInventoryMovements.gsp	(revision 498)
@@ -40,15 +40,23 @@
                     <tbody>
                     <g:each in="${inventoryMovementList}" status="i" var="inventoryMovementInstance">
-                    <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'/>
+                    <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
 
-                            <td>${fieldValue(bean:inventoryMovementInstance, field:'quantity')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'>
+                                ${fieldValue(bean:inventoryMovementInstance, field:'quantity')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryMovementInstance, field:'inventoryMovementType')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'>
+                                ${fieldValue(bean:inventoryMovementInstance, field:'inventoryMovementType')}
+                            </td>
                         
-                            <td><g:formatDate date="${inventoryMovementInstance.date}" format="EEE, dd-MMM-yyyy"/></td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'>
+                                <g:formatDate date="${inventoryMovementInstance.date}" format="EEE, dd-MMM-yyyy"/>
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryMovementInstance, field:'person')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'>
+                                ${fieldValue(bean:inventoryMovementInstance, field:'person')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${inventoryMovementInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/inventoryStoreDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/inventoryStoreDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/inventoryStoreDetailed/list.gsp	(revision 498)
@@ -37,17 +37,27 @@
                     <tbody>
                     <g:each in="${inventoryStoreInstanceList}" status="i" var="inventoryStoreInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/inventoryStoreDetailed/show/${inventoryStoreInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:inventoryStoreInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryStoreDetailed/show/${inventoryStoreInstance.id}"'>
+                                ${fieldValue(bean:inventoryStoreInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryStoreInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryStoreDetailed/show/${inventoryStoreInstance.id}"'>
+                                ${fieldValue(bean:inventoryStoreInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryStoreInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryStoreDetailed/show/${inventoryStoreInstance.id}"'>
+                                ${fieldValue(bean:inventoryStoreInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryStoreInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryStoreDetailed/show/${inventoryStoreInstance.id}"'>
+                                ${fieldValue(bean:inventoryStoreInstance, field:'isActive')}
+                            </td>
                         
-                            <td>${fieldValue(bean:inventoryStoreInstance, field:'site')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/inventoryStoreDetailed/show/${inventoryStoreInstance.id}"'>
+                                ${fieldValue(bean:inventoryStoreInstance, field:'site')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${inventoryStoreInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/maintenancePolicyDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/maintenancePolicyDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/maintenancePolicyDetailed/list.gsp	(revision 498)
@@ -34,15 +34,23 @@
                     <tbody>
                     <g:each in="${maintenancePolicyInstanceList}" status="i" var="maintenancePolicyInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/maintenancePolicyDetailed/show/${maintenancePolicyInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:maintenancePolicyInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/maintenancePolicyDetailed/show/${maintenancePolicyInstance.id}"'>
+                                ${fieldValue(bean:maintenancePolicyInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:maintenancePolicyInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/maintenancePolicyDetailed/show/${maintenancePolicyInstance.id}"'>
+                                ${fieldValue(bean:maintenancePolicyInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:maintenancePolicyInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/maintenancePolicyDetailed/show/${maintenancePolicyInstance.id}"'>
+                                ${fieldValue(bean:maintenancePolicyInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:maintenancePolicyInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/maintenancePolicyDetailed/show/${maintenancePolicyInstance.id}"'>
+                                ${fieldValue(bean:maintenancePolicyInstance, field:'isActive')}
+                            </td>
                             
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${maintenancePolicyInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/manufacturerDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/manufacturerDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/manufacturerDetailed/list.gsp	(revision 498)
@@ -37,17 +37,27 @@
                     <tbody>
                     <g:each in="${manufacturerInstanceList}" status="i" var="manufacturerInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:manufacturerInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'>
+                                ${fieldValue(bean:manufacturerInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:manufacturerInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'>
+                                ${fieldValue(bean:manufacturerInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:manufacturerInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'>
+                                ${fieldValue(bean:manufacturerInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:manufacturerInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'>
+                                ${fieldValue(bean:manufacturerInstance, field:'isActive')}
+                            </td>
                         
-                            <td>${fieldValue(bean:manufacturerInstance, field:'manufacturerType')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/manufacturerDetailed/show/${manufacturerInstance.id}"'>
+                                ${fieldValue(bean:manufacturerInstance, field:'manufacturerType')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${manufacturerInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/manufacturerTypeDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/manufacturerTypeDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/manufacturerTypeDetailed/list.gsp	(revision 498)
@@ -35,15 +35,23 @@
                     <tbody>
                     <g:each in="${manufacturerTypeInstanceList}" status="i" var="manufacturerTypeInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/manufacturerTypeDetailed/show/${manufacturerTypeInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
 
-                            <td>${fieldValue(bean:manufacturerTypeInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/manufacturerTypeDetailed/show/${manufacturerTypeInstance.id}"'>
+                                ${fieldValue(bean:manufacturerTypeInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:manufacturerTypeInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/manufacturerTypeDetailed/show/${manufacturerTypeInstance.id}"'>
+                                ${fieldValue(bean:manufacturerTypeInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:manufacturerTypeInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/manufacturerTypeDetailed/show/${manufacturerTypeInstance.id}"'>
+                                ${fieldValue(bean:manufacturerTypeInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:manufacturerTypeInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/manufacturerTypeDetailed/show/${manufacturerTypeInstance.id}"'>
+                                ${fieldValue(bean:manufacturerTypeInstance, field:'isActive')}
+                            </td>
                             
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${manufacturerTypeInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/person/list.gsp
===================================================================
--- /trunk/grails-app/views/person/list.gsp	(revision 497)
+++ /trunk/grails-app/views/person/list.gsp	(revision 498)
@@ -82,12 +82,27 @@
                 <tbody>
                 <g:each in="${personList}" status="i" var="person">
-                    <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/person/show/${person.id}"'/>
+                    <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
 
-                        <td>${person.id}</td>
-                        <td>${person.loginName?.encodeAsHTML()}</td>
-                        <td>${person.firstName?.encodeAsHTML()}</td>
-                        <td>${person.lastName?.encodeAsHTML()}</td>
-                        <td>${person.isActive?.encodeAsHTML()}</td>
-                        <td>
+                        <td onclick='window.location = "${request.getContextPath()}/person/show/${person.id}"'>
+                            ${person.id}
+                        </td>
+
+                        <td onclick='window.location = "${request.getContextPath()}/person/show/${person.id}"'>
+                            ${person.loginName?.encodeAsHTML()}
+                        </td>
+
+                        <td onclick='window.location = "${request.getContextPath()}/person/show/${person.id}"'>
+                            ${person.firstName?.encodeAsHTML()}
+                        </td>
+
+                        <td onclick='window.location = "${request.getContextPath()}/person/show/${person.id}"'>
+                            ${person.lastName?.encodeAsHTML()}
+                        </td>
+
+                        <td onclick='window.location = "${request.getContextPath()}/person/show/${person.id}"'>
+                            ${person.isActive?.encodeAsHTML()}
+                        </td>
+
+                        <td class="notClickable">
                             <g:link action="show" id="${person.id}">
                                 <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/personGroupDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/personGroupDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/personGroupDetailed/list.gsp	(revision 498)
@@ -35,15 +35,23 @@
                     <tbody>
                     <g:each in="${personGroupInstanceList}" status="i" var="personGroupInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/personGroupDetailed/show/${personGroupInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:personGroupInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/personGroupDetailed/show/${personGroupInstance.id}"'>
+                                ${fieldValue(bean:personGroupInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:personGroupInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/personGroupDetailed/show/${personGroupInstance.id}"'>
+                                ${fieldValue(bean:personGroupInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:personGroupInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/personGroupDetailed/show/${personGroupInstance.id}"'>
+                                ${fieldValue(bean:personGroupInstance, field:'isActive')}
+                            </td>
                         
-                            <td>${fieldValue(bean:personGroupInstance, field:'personGroupType')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/personGroupDetailed/show/${personGroupInstance.id}"'>
+                                ${fieldValue(bean:personGroupInstance, field:'personGroupType')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${personGroupInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/personGroupTypeDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/personGroupTypeDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/personGroupTypeDetailed/list.gsp	(revision 498)
@@ -35,15 +35,23 @@
                     <tbody>
                     <g:each in="${personGroupTypeInstanceList}" status="i" var="personGroupTypeInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/personGroupTypeDetailed/show/${personGroupTypeInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:personGroupTypeInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/personGroupTypeDetailed/show/${personGroupTypeInstance.id}"'>
+                                ${fieldValue(bean:personGroupTypeInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:personGroupTypeInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/personGroupTypeDetailed/show/${personGroupTypeInstance.id}"'>
+                                ${fieldValue(bean:personGroupTypeInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:personGroupTypeInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/personGroupTypeDetailed/show/${personGroupTypeInstance.id}"'>
+                                ${fieldValue(bean:personGroupTypeInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:personGroupTypeInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/personGroupTypeDetailed/show/${personGroupTypeInstance.id}"'>
+                                ${fieldValue(bean:personGroupTypeInstance, field:'isActive')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${personGroupTypeInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/pictureDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/pictureDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/pictureDetailed/list.gsp	(revision 498)
@@ -26,5 +26,5 @@
                         <g:each in="${list}" status="i" var="picture">
                             <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}">
-                                <td class='gallery'>
+                                <td class="notClickable">
                                     <wa:pictureLightboxAnchor picture="${picture}"
                                                                                         size="${Image.Small}"
@@ -47,5 +47,5 @@
                                 </td>
 
-                                <td>
+                                <td class="notClickable">
                                     <g:link action="show" id="${picture.id}">
                                         <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/productionReferenceDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/productionReferenceDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/productionReferenceDetailed/list.gsp	(revision 498)
@@ -33,15 +33,23 @@
                     <tbody>
                     <g:each in="${productionReferenceInstanceList}" status="i" var="productionReferenceInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/productionReferenceDetailed/show/${productionReferenceInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:productionReferenceInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/productionReferenceDetailed/show/${productionReferenceInstance.id}"'>
+                                ${fieldValue(bean:productionReferenceInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:productionReferenceInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/productionReferenceDetailed/show/${productionReferenceInstance.id}"'>
+                                ${fieldValue(bean:productionReferenceInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:productionReferenceInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/productionReferenceDetailed/show/${productionReferenceInstance.id}"'>
+                                ${fieldValue(bean:productionReferenceInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:productionReferenceInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/productionReferenceDetailed/show/${productionReferenceInstance.id}"'>
+                                ${fieldValue(bean:productionReferenceInstance, field:'isActive')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${productionReferenceInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/sectionDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/sectionDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/sectionDetailed/list.gsp	(revision 498)
@@ -37,19 +37,31 @@
                     <tbody>
                     <g:each in="${sectionInstanceList}" status="i" var="sectionInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/sectionDetailed/show/${sectionInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:sectionInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/sectionDetailed/show/${sectionInstance.id}"'>
+                                ${fieldValue(bean:sectionInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:sectionInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/sectionDetailed/show/${sectionInstance.id}"'>
+                                ${fieldValue(bean:sectionInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:sectionInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/sectionDetailed/show/${sectionInstance.id}"'>
+                                ${fieldValue(bean:sectionInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:sectionInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/sectionDetailed/show/${sectionInstance.id}"'>
+                                ${fieldValue(bean:sectionInstance, field:'isActive')}
+                            </td>
                         
-                            <td>${fieldValue(bean:sectionInstance, field:'department')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/sectionDetailed/show/${sectionInstance.id}"'>
+                                ${fieldValue(bean:sectionInstance, field:'department')}
+                            </td>
                         
-                            <td>${fieldValue(bean:sectionInstance, field:'site')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/sectionDetailed/show/${sectionInstance.id}"'>
+                                ${fieldValue(bean:sectionInstance, field:'site')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${sectionInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/siteDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/siteDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/siteDetailed/list.gsp	(revision 498)
@@ -33,15 +33,23 @@
                     <tbody>
                     <g:each in="${siteInstanceList}" status="i" var="siteInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/siteDetailed/show/${siteInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:siteInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/siteDetailed/show/${siteInstance.id}"'>
+                                ${fieldValue(bean:siteInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:siteInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/siteDetailed/show/${siteInstance.id}"'>
+                                ${fieldValue(bean:siteInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:siteInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/siteDetailed/show/${siteInstance.id}"'>
+                                ${fieldValue(bean:siteInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:siteInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/siteDetailed/show/${siteInstance.id}"'>
+                                ${fieldValue(bean:siteInstance, field:'isActive')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${siteInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/supplierDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/supplierDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/supplierDetailed/list.gsp	(revision 498)
@@ -37,17 +37,27 @@
                     <tbody>
                     <g:each in="${supplierInstanceList}" status="i" var="supplierInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/supplierDetailed/show/${supplierInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
                         
-                            <td>${fieldValue(bean:supplierInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/supplierDetailed/show/${supplierInstance.id}"'>
+                                ${fieldValue(bean:supplierInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:supplierInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/supplierDetailed/show/${supplierInstance.id}"'>
+                                ${fieldValue(bean:supplierInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:supplierInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/supplierDetailed/show/${supplierInstance.id}"'>
+                                ${fieldValue(bean:supplierInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:supplierInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/supplierDetailed/show/${supplierInstance.id}"'>
+                                ${fieldValue(bean:supplierInstance, field:'isActive')}
+                            </td>
                         
-                            <td>${fieldValue(bean:supplierInstance, field:'supplierType')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/supplierDetailed/show/${supplierInstance.id}"'>
+                                ${fieldValue(bean:supplierInstance, field:'supplierType')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${supplierInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/supplierTypeDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/supplierTypeDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/supplierTypeDetailed/list.gsp	(revision 498)
@@ -35,15 +35,23 @@
                     <tbody>
                     <g:each in="${supplierTypeInstanceList}" status="i" var="supplierTypeInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/supplierTypeDetailed/show/${supplierTypeInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
 
-                            <td>${fieldValue(bean:supplierTypeInstance, field:'id')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/supplierTypeDetailed/show/${supplierTypeInstance.id}"'>
+                                ${fieldValue(bean:supplierTypeInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:supplierTypeInstance, field:'name')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/supplierTypeDetailed/show/${supplierTypeInstance.id}"'>
+                                ${fieldValue(bean:supplierTypeInstance, field:'name')}
+                            </td>
                         
-                            <td>${fieldValue(bean:supplierTypeInstance, field:'description')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/supplierTypeDetailed/show/${supplierTypeInstance.id}"'>
+                                ${fieldValue(bean:supplierTypeInstance, field:'description')}
+                            </td>
                         
-                            <td>${fieldValue(bean:supplierTypeInstance, field:'isActive')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/supplierTypeDetailed/show/${supplierTypeInstance.id}"'>
+                                ${fieldValue(bean:supplierTypeInstance, field:'isActive')}
+                            </td>
                             
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${supplierTypeInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/taskDetailed/search.gsp
===================================================================
--- /trunk/grails-app/views/taskDetailed/search.gsp	(revision 497)
+++ /trunk/grails-app/views/taskDetailed/search.gsp	(revision 498)
@@ -97,7 +97,9 @@
                                 <g:sortableColumn property="description" title="Description" params="${filterParams}" />
 
-                                <g:sortableColumn  property="taskPriority" title="Task Priority" params="${filterParams}" />
+                                <g:sortableColumn  property="taskPriority" title="Priority" params="${filterParams}" />
 
-                                <g:sortableColumn  property="taskStatus" title="Task Status" params="${filterParams}" />
+                                <g:sortableColumn  property="taskStatus" title="Type" params="${filterParams}" />
+
+                                <g:sortableColumn  property="taskStatus" title="Status" params="${filterParams}" />
 
                                 <th></th>
@@ -108,7 +110,7 @@
                         <tbody>
                         <g:each in="${taskInstanceList}" status="i" var="taskInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
 
-                                <td class="idColumn">
+                                <td class="idColumn" onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'>
                                     <g:if test="${taskInstance.attentionFlag}">
                                         <img  src="${resource(dir:'images/skin',file:'flag_red.png')}" alt="Flag" />
@@ -116,15 +118,29 @@
                                 </td>
 
-                                <td class="idColumn">${fieldValue(bean:taskInstance, field:'id')}</td>
+                                <td class="idColumn" onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'>
+                                    ${fieldValue(bean:taskInstance, field:'id')}
+                                </td>
 
-                                <td><g:formatDate date="${taskInstance.targetStartDate}" format="EEE, dd-MMM-yyyy"/></td>
+                                <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'>
+                                    <g:formatDate date="${taskInstance.targetStartDate}" format="EEE, dd-MMM-yyyy"/>
+                                </td>
 
-                                <td>${fieldValue(bean:taskInstance, field:'description')}</td>
+                                <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'>
+                                    ${fieldValue(bean:taskInstance, field:'description')}
+                                </td>
 
-                                <td>${fieldValue(bean:taskInstance, field:'taskPriority')}</td>
+                                <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'>
+                                    ${fieldValue(bean:taskInstance, field:'taskPriority')}
+                                </td>
 
-                                <td>${fieldValue(bean:taskInstance, field:'taskStatus')}</td>
+                                <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'>
+                                    ${fieldValue(bean:taskInstance, field:'taskType')}
+                                </td>
 
-                                <td>
+                                <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'>
+                                    ${fieldValue(bean:taskInstance, field:'taskStatus')}
+                                </td>
+
+                                <td class="notClickable">
                                     <g:link action="show" id="${taskInstance.id}">
                                         <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/taskDetailed/show.gsp
===================================================================
--- /trunk/grails-app/views/taskDetailed/show.gsp	(revision 497)
+++ /trunk/grails-app/views/taskDetailed/show.gsp	(revision 498)
@@ -291,9 +291,15 @@
                                     <tbody>
                                         <g:each in="${entryFaultList}" status="i" var="entry">
-                                                <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'/>
-
-                                                    <td style="width:65%">${entry.comment.encodeAsHTML()}</td>
-                                                    <td><g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/></td>
-                                                    <td>
+                                                <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
+
+                                                    <td style="width:65%" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        ${entry.comment.encodeAsHTML()}
+                                                    </td>
+
+                                                    <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        <g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/>
+                                                    </td>
+
+                                                    <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
                                                         <g:if test="${entry.productionReference}">
                                                             ${entry.productionReference.encodeAsHTML()}
@@ -303,8 +309,14 @@
                                                         </g:else>
                                                     </td>
-                                                    <td>${entry.durationHour}:${entry.durationMinute}</td>
-                                                    <td>${entry.enteredBy.encodeAsHTML()}</td>
-
-                                                    <td>
+
+                                                    <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        ${entry.durationHour}:${entry.durationMinute}
+                                                    </td>
+
+                                                    <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        ${entry.enteredBy.encodeAsHTML()}
+                                                    </td>
+
+                                                    <td class="notClickable">
                                                         <g:link controller="entryDetailed" action="edit" id="${entry.id}">
                                                             <img  src="${resource(dir:'images/skin',file:'database_edit.png')}" alt="Edit" />
@@ -349,11 +361,19 @@
                                     <tbody>
                                         <g:each in="${entryCauseList}" status="i" var="entry">
-                                                <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'/>
-
-                                                    <td style="width:65%">${entry.comment.encodeAsHTML()}</td>
-                                                    <td><g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/></td>
-                                                    <td>${entry.enteredBy.encodeAsHTML()}</td>
-
-                                                    <td>
+                                                <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
+
+                                                    <td style="width:65%" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        ${entry.comment.encodeAsHTML()}
+                                                    </td>
+
+                                                    <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        <g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/>
+                                                    </td>
+
+                                                    <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        ${entry.enteredBy.encodeAsHTML()}
+                                                    </td>
+
+                                                    <td class="notClickable">
                                                         <g:link controller="entryDetailed" action="edit" id="${entry.id}">
                                                             <img  src="${resource(dir:'images/skin',file:'database_edit.png')}" alt="Edit" />
@@ -399,12 +419,23 @@
                                     <tbody>
                                         <g:each in="${entryWorkDoneList}" status="i" var="entry">
-                                                <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'/>
-
-                                                    <td width="65%">${entry.comment.encodeAsHTML()}</td>
-                                                    <td><g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/></td>
-                                                    <td>${entry.durationHour}:${entry.durationMinute}</td>
-                                                    <td>${entry.enteredBy.encodeAsHTML()}</td>
-
-                                                    <td>
+                                                <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
+
+                                                    <td width="65%" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        ${entry.comment.encodeAsHTML()}
+                                                    </td>
+                                                    
+                                                    <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        <g:formatDate date="${entry.dateDone}" format="EEE, dd-MMM-yyyy"/>
+                                                    </td>
+                                                    
+                                                    <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        ${entry.durationHour}:${entry.durationMinute}
+                                                    </td>
+                                                    
+                                                    <td onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'>
+                                                        ${entry.enteredBy.encodeAsHTML()}
+                                                    </td>
+
+                                                    <td class="notClickable">
                                                         <g:link controller="entryDetailed" action="edit" id="${entry.id}">
                                                             <img  src="${resource(dir:'images/skin',file:'database_edit.png')}" alt="Edit" />
@@ -513,21 +544,21 @@
 
                                                 <td valign="top" class="name">
-                                                    ${maintenanceAction?.procedureStepNumber}
+                                                    ${fieldValue(bean:maintenanceAction, field:'procedureStepNumber')}
                                                 </td>
 
                                                 <td  valign="top" style="text-align:left;" class="value">
-                                                    ${maintenanceAction?.description}
+                                                    ${fieldValue(bean:maintenanceAction, field:'description')}
                                                 </td>
 
                                                 <td  valign="top" style="text-align:left;" class="value">
-                                                    ${maintenanceAction?.reasoning}
+                                                    ${fieldValue(bean:maintenanceAction, field:'reasoning')}
                                                 </td>
 
                                                 <td  valign="top" style="text-align:left;" class="value">
-                                                    ${maintenanceAction?.asset}
+                                                    ${fieldValue(bean:maintenanceAction, field:'asset')}
                                                 </td>
 
                                                 <td  valign="top" style="text-align:left;" class="value">
-                                                    ${maintenanceAction?.assetSubItem}
+                                                    ${fieldValue(bean:maintenanceAction, field:'assetSubItem')}
                                                 </td>
 
@@ -659,11 +690,23 @@
                                     <tbody>
                                         <g:each in="${inventoryMovementList}" status="i" var="inventoryMovementInstance">
-                                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'/>
-
-                                                <td>${fieldValue(bean:inventoryMovementInstance, field:'inventoryItem')}</td>
-                                                <td>${fieldValue(bean:inventoryMovementInstance, field:'quantity')}</td>
-                                                <td>${fieldValue(bean:inventoryMovementInstance, field:'inventoryMovementType')}</td>
-                                                <td><g:formatDate date="${inventoryMovementInstance.date}" format="EEE, dd-MMM-yyyy"/></td>
-                                                <td>
+                                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
+
+                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'>
+                                                    ${fieldValue(bean:inventoryMovementInstance, field:'inventoryItem')}
+                                                </td>
+
+                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'>
+                                                    ${fieldValue(bean:inventoryMovementInstance, field:'quantity')}
+                                                </td>
+
+                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'>
+                                                    ${fieldValue(bean:inventoryMovementInstance, field:'inventoryMovementType')}
+                                                </td>
+
+                                                <td onclick='window.location = "${request.getContextPath()}/inventoryMovementDetailed/show/${inventoryMovementInstance.id}"'>
+                                                    <g:formatDate date="${inventoryMovementInstance.date}" format="EEE, dd-MMM-yyyy"/>
+                                                </td>
+
+                                                <td class="notClickable">
                                                     <g:link controller="inventoryMovementDetailed" action="show" id="${inventoryMovementInstance.id}">
                                                         <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
@@ -720,20 +763,32 @@
                                     <tbody>
                                     <g:each in="${subTaskInstanceList}" status="i" var="subTaskInstance">
-                                    <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'/>
-
-                                            <td>${fieldValue(bean:subTaskInstance, field:'id')}</td>
-
-                                            <td><g:formatDate date="${subTaskInstance.targetStartDate}" format="EEE, dd-MMM-yyyy"/></td>
-
-                                            <td>${subTaskInstance.description}</td>
-
-
-                                            <td>${subTaskInstance.leadPerson}</td>
-
-                                            <td>${subTaskInstance.taskPriority}</td>
-
-                                            <td>${subTaskInstance.taskStatus}</td>
-
-                                            <td>
+                                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
+
+                                            <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'>
+                                                ${fieldValue(bean:subTaskInstance, field:'id')}
+                                            </td>
+
+                                            <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'>
+                                                <g:formatDate date="${subTaskInstance.targetStartDate}" format="EEE, dd-MMM-yyyy"/>
+                                            </td>
+
+                                            <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'>
+                                                ${fieldValue(bean:subTaskInstance, field:'description')}
+                                            </td>
+
+
+                                            <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'>
+                                                ${fieldValue(bean:subTaskInstance, field:'leadPerson')}
+                                            </td>
+
+                                            <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'>
+                                                ${fieldValue(bean:subTaskInstance, field:'taskPriority')}
+                                            </td>
+
+                                            <td onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${subTaskInstance.id}"'>
+                                                ${fieldValue(bean:subTaskInstance, field:'taskStatus')}
+                                            </td>
+
+                                            <td class="notClickable">
                                                 <g:link action="show" id="${subTaskInstance.id}">
                                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
Index: /trunk/grails-app/views/taskRecurringScheduleDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/taskRecurringScheduleDetailed/list.gsp	(revision 497)
+++ /trunk/grails-app/views/taskRecurringScheduleDetailed/list.gsp	(revision 498)
@@ -37,18 +37,28 @@
                     <tbody>
                     <g:each in="${taskRecurringScheduleInstanceList}" status="i" var="taskRecurringScheduleInstance">
-                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'/>
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}"/>
 
                         
-                            <td><g:link action="show" id="${taskRecurringScheduleInstance.id}">${fieldValue(bean:taskRecurringScheduleInstance, field:'id')}</g:link></td>
+                            <td onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'>
+                                ${fieldValue(bean:taskRecurringScheduleInstance, field:'id')}
+                            </td>
                         
-                            <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'task')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'>
+                                ${fieldValue(bean:taskRecurringScheduleInstance, field:'task')}
+                            </td>
                         
-                            <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'recurEvery')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'>
+                                ${fieldValue(bean:taskRecurringScheduleInstance, field:'recurEvery')}
+                            </td>
                         
-                            <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'recurPeriod')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'>
+                                ${fieldValue(bean:taskRecurringScheduleInstance, field:'recurPeriod')}
+                            </td>
                         
-                            <td>${fieldValue(bean:taskRecurringScheduleInstance, field:'enabled')}</td>
+                            <td onclick='window.location = "${request.getContextPath()}/taskRecurringScheduleDetailed/show/${taskRecurringScheduleInstance.id}"'>
+                                ${fieldValue(bean:taskRecurringScheduleInstance, field:'enabled')}
+                            </td>
 
-                            <td>
+                            <td class="notClickable">
                                 <g:link action="show" id="${taskRecurringScheduleInstance.id}">
                                     <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
