Index: trunk/grails-app/controllers/TaskGroupDetailedController.groovy
===================================================================
--- trunk/grails-app/controllers/TaskGroupDetailedController.groovy	(revision 557)
+++ trunk/grails-app/controllers/TaskGroupDetailedController.groovy	(revision 558)
@@ -15,4 +15,9 @@
 
     def show = {
+
+        // In the case of an actionSubmit button, rewrite action name from 'index'.
+        if(params._action_Show)
+            params.action='show'
+
         def taskGroupInstance = TaskGroup.get( params.id )
 
@@ -44,4 +49,9 @@
 
     def edit = {
+
+        // In the case of an actionSubmit button, rewrite action name from 'index'.
+        if(params._action_Edit)
+            params.action='edit'
+
         def taskGroupInstance = TaskGroup.get( params.id )
 
