Index: /trunk/grails-app/conf/Config.groovy
===================================================================
--- /trunk/grails-app/conf/Config.groovy	(revision 385)
+++ /trunk/grails-app/conf/Config.groovy	(revision 386)
@@ -264,5 +264,5 @@
         ]
     ],
-    [order:110, controller:'siteDetailed', title:'site', action:'list',
+    [order:120, controller:'siteDetailed', title:'site', action:'list',
         subItems: [
             [order:10, controller:'siteDetailed', title:'Site List', action:'list', isVisible: { true }],
@@ -272,5 +272,5 @@
         ]
     ],
-    [order:110, controller:'sectionDetailed', title:'section', action:'list',
+    [order:130, controller:'sectionDetailed', title:'section', action:'list',
         subItems: [
             [order:10, controller:'sectionDetailed', title:'Section List', action:'list', isVisible: { true }],
@@ -279,4 +279,12 @@
             [order:91, controller:'sectionDetailed', title:'Edit', action:'edit', isVisible: { params.action == 'edit' }]
         ]
+    ],
+    [order:140, controller:'extendedAttributeTypeDetailed', title:'extendedAttribute', action:'list',
+        subItems: [
+            [order:10, controller:'extendedAttributeTypeDetailed', title:'Attribute Type List', action:'list', isVisible: { true }],
+            [order:20, controller:'extendedAttributeTypeDetailed', title:'Create', action:'create', isVisible: { true }],
+            [order:90, controller:'extendedAttributeTypeDetailed', title:'Show', action:'show', isVisible: { params.action == 'show' }],
+            [order:91, controller:'extendedAttributeTypeDetailed', title:'Edit', action:'edit', isVisible: { params.action == 'edit' }]
+        ]
     ]
 ]
Index: /trunk/grails-app/controllers/ExtendedAttributeTypeDetailedController.groovy
===================================================================
--- /trunk/grails-app/controllers/ExtendedAttributeTypeDetailedController.groovy	(revision 385)
+++ /trunk/grails-app/controllers/ExtendedAttributeTypeDetailedController.groovy	(revision 386)
@@ -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 extendedAttributeTypeInstance = ExtendedAttributeType.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 extendedAttributeTypeInstance = ExtendedAttributeType.get( params.id )
 
Index: /trunk/grails-app/views/extendedAttributeTypeDetailed/create.gsp
===================================================================
--- /trunk/grails-app/views/extendedAttributeTypeDetailed/create.gsp	(revision 385)
+++ /trunk/grails-app/views/extendedAttributeTypeDetailed/create.gsp	(revision 386)
@@ -6,11 +6,11 @@
         <meta name="layout" content="main" />
         <title>Create ExtendedAttributeType</title>
+        <nav:resources override="true"/>
     </head>
     <body>
         <div class="nav">
-            <span class="menuButton"><g:link class="list" action="list">ExtendedAttributeType List</g:link></span>
+            <nav:renderSubItems group="navAlt"/>
         </div>
         <div class="body">
-            <h1>Create ExtendedAttributeType</h1>
             <g:if test="${flash.message}">
             <div class="message">${flash.message}</div>
Index: /trunk/grails-app/views/extendedAttributeTypeDetailed/edit.gsp
===================================================================
--- /trunk/grails-app/views/extendedAttributeTypeDetailed/edit.gsp	(revision 385)
+++ /trunk/grails-app/views/extendedAttributeTypeDetailed/edit.gsp	(revision 386)
@@ -6,12 +6,11 @@
         <meta name="layout" content="main" />
         <title>Edit ExtendedAttributeType</title>
+        <nav:resources override="true"/>
     </head>
     <body>
         <div class="nav">
-            <span class="menuButton"><g:link class="list" action="list">ExtendedAttributeType List</g:link></span>
-            <span class="menuButton"><g:link class="create" action="create">New ExtendedAttributeType</g:link></span>
+            <nav:renderSubItems group="navAlt"/>
         </div>
         <div class="body">
-            <h1>Edit ExtendedAttributeType</h1>
             <g:if test="${flash.message}">
             <div class="message">${flash.message}</div>
@@ -61,4 +60,5 @@
                 <div class="buttons">
                     <span class="button"><g:actionSubmit class="save" value="Update" /></span>
+                    <span class="button"><g:actionSubmit class="cancel" value="Cancel" action="Show"/></span>
                     <span class="button"><g:actionSubmit class="delete" onclick="return confirm('Are you sure?');" value="Delete" /></span>
                 </div>
Index: /trunk/grails-app/views/extendedAttributeTypeDetailed/list.gsp
===================================================================
--- /trunk/grails-app/views/extendedAttributeTypeDetailed/list.gsp	(revision 385)
+++ /trunk/grails-app/views/extendedAttributeTypeDetailed/list.gsp	(revision 386)
@@ -6,11 +6,11 @@
         <meta name="layout" content="main" />
         <title>ExtendedAttributeType List</title>
+        <nav:resources override="true"/>
     </head>
     <body>
         <div class="nav">
-            <span class="menuButton"><g:link class="create" action="create">New ExtendedAttributeType</g:link></span>
+            <nav:renderSubItems group="navAlt"/>
         </div>
         <div class="body">
-            <h1>ExtendedAttributeType List</h1>
             <g:if test="${flash.message}">
             <div class="message">${flash.message}</div>
@@ -21,11 +21,13 @@
                         <tr>
                         
-                   	        <g:sortableColumn property="id" title="Id" />
-                        
-                   	        <g:sortableColumn property="name" title="Name" />
-                        
-                   	        <g:sortableColumn property="description" title="Description" />
-                        
-                   	        <g:sortableColumn property="isActive" title="Is Active" />
+                            <g:sortableColumn property="id" title="Id" />
+
+                            <g:sortableColumn property="name" title="Name" />
+
+                            <g:sortableColumn property="description" title="Description" />
+
+                            <g:sortableColumn property="isActive" title="Is Active" />
+
+                            <th></th>
                         
                         </tr>
@@ -33,7 +35,7 @@
                     <tbody>
                     <g:each in="${extendedAttributeTypeInstanceList}" status="i" var="extendedAttributeTypeInstance">
-                        <tr class="${(i % 2) == 0 ? 'odd' : 'even'}">
+                        <tr class="${(i % 2) == 0 ? 'clickableOdd' : 'clickableEven'}" onclick='window.location = "${request.getContextPath()}/extendedAttributeTypeDetailed/show/${extendedAttributeTypeInstance.id}"'/>
                         
-                            <td><g:link action="show" id="${extendedAttributeTypeInstance.id}">${fieldValue(bean:extendedAttributeTypeInstance, field:'id')}</g:link></td>
+                            <td>${fieldValue(bean:extendedAttributeTypeInstance, field:'id')}</td>
                         
                             <td>${fieldValue(bean:extendedAttributeTypeInstance, field:'name')}</td>
@@ -42,4 +44,10 @@
                         
                             <td>${fieldValue(bean:extendedAttributeTypeInstance, field:'isActive')}</td>
+                            
+                            <td>
+                                <g:link action="show" id="${extendedAttributeTypeInstance.id}">
+                                    <img  src="${resource(dir:'images/skin',file:'database_go.png')}" alt="Show" />
+                                </g:link>
+                            </td>
                         
                         </tr>
Index: /trunk/grails-app/views/extendedAttributeTypeDetailed/show.gsp
===================================================================
--- /trunk/grails-app/views/extendedAttributeTypeDetailed/show.gsp	(revision 385)
+++ /trunk/grails-app/views/extendedAttributeTypeDetailed/show.gsp	(revision 386)
@@ -6,12 +6,11 @@
         <meta name="layout" content="main" />
         <title>Show ExtendedAttributeType</title>
+        <nav:resources override="true"/>
     </head>
     <body>
         <div class="nav">
-            <span class="menuButton"><g:link class="list" action="list">ExtendedAttributeType List</g:link></span>
-            <span class="menuButton"><g:link class="create" action="create">New ExtendedAttributeType</g:link></span>
+            <nav:renderSubItems group="navAlt"/>
         </div>
         <div class="body">
-            <h1>Show ExtendedAttributeType</h1>
             <g:if test="${flash.message}">
             <div class="message">${flash.message}</div>
