Index: trunk/grails-app/views/taskDetailed/list.gsp
===================================================================
--- trunk/grails-app/views/taskDetailed/list.gsp	(revision 110)
+++ trunk/grails-app/views/taskDetailed/list.gsp	(revision 124)
@@ -38,6 +38,6 @@
                     <tbody>
                     <g:each in="${taskInstanceList}" status="i" var="taskInstance">
-                        <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
-                        
+                    <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/taskDetailed/show/${taskInstance.id}"'/>
+
                             <td>${fieldValue(bean:taskInstance, field:'id')}</td>
                         
@@ -64,5 +64,5 @@
             </div>
             <div class="paginateButtons">
-                <g:paginate total="${Task.count()}" />
+                <g:paginate total="${taskInstanceTotal}" />
             </div>
         </div>
Index: trunk/grails-app/views/taskDetailed/show.gsp
===================================================================
--- trunk/grails-app/views/taskDetailed/show.gsp	(revision 110)
+++ trunk/grails-app/views/taskDetailed/show.gsp	(revision 124)
@@ -176,6 +176,6 @@
                     <tbody>
                     <g:each in="${taskInstance?.entries}" status="i" var="entry">
-                        <g:if test="${entry.entryType == EntryType.findByName('Fault')}"> 
-                            <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
+                        <g:if test="${entry.entryType == EntryType.findByName('Fault')}">
+                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'/>
                             
                                 <td style="width:65%">${entry.comment}</td>
@@ -183,4 +183,5 @@
                                 <td>${entry.durationHour}:${entry.durationMinute}</td>
                                 <td>${entry.enteredBy}</td>
+
                                 <td>
                                     <g:link controller="entryDetailed" action="edit" id="${entry.id}">
@@ -189,7 +190,6 @@
                                 </td>
 
+                            </tr>
                         </g:if>
-                        
-                        </tr>
                     </g:each>
                     </tbody>
@@ -207,4 +207,5 @@
                             <th>Entered By</th>
                             <th></th>
+
 <!--                            <g:sortableColumn property="commentW" title="Comment" />
                         
@@ -216,11 +217,12 @@
                     <tbody>
                     <g:each in="${taskInstance?.entries}" status="i" var="entry">
-                        <g:if test="${entry.entryType == EntryType.findByName('WorkDone')}"> 
-                            <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
-                            
+                        <g:if test="${entry.entryType == EntryType.findByName('WorkDone')}">
+                            <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/entryDetailed/edit/${entry.id}"'/>
+
                                 <td width="65%">${entry.comment}</td>
                                 <td><g:formatDate date="${entry.dateDone}" format="EEE, dd MMM yyyy"/></td>
                                 <td>${entry.durationHour}:${entry.durationMinute}</td>
                                 <td>${entry.enteredBy}</td>
+
                                 <td>
                                     <g:link controller="entryDetailed" action="edit" id="${entry.id}">
@@ -228,7 +230,7 @@
                                     </g:link>
                                 </td>
+
+                            </tr>
                         </g:if>
-                        
-                        </tr>
                     </g:each>
                     </tbody>
