Index: /trunk/grails-app/controllers/InventoryItemDetailedController.groovy
===================================================================
--- /trunk/grails-app/controllers/InventoryItemDetailedController.groovy	(revision 506)
+++ /trunk/grails-app/controllers/InventoryItemDetailedController.groovy	(revision 507)
@@ -202,4 +202,5 @@
             List fields = ["name",
                                 "description",
+                                "inventoryGroup",
                                 "unitsInStock",
                                 "reorderPoint",
@@ -209,4 +210,5 @@
             Map labels = ["name": "Name",
                                 "description": "Description",
+                                "inventoryGroup": "Group",
                                 "unitsInStock":"In Stock",
                                 "reorderPoint":"Reorder Point",
Index: /trunk/grails-app/views/inventoryItemDetailed/search.gsp
===================================================================
--- /trunk/grails-app/views/inventoryItemDetailed/search.gsp	(revision 506)
+++ /trunk/grails-app/views/inventoryItemDetailed/search.gsp	(revision 507)
@@ -117,7 +117,9 @@
                                 <g:sortableColumn property="description" title="Description" params="${filterParams}" />
                             
-                                <g:sortableColumn property="unitsInStock" title="Units In Stock" params="${filterParams}" />
+                                <g:sortableColumn property="inventoryGroup" title="Group" params="${filterParams}" />
+                            
+                                <g:sortableColumn property="unitsInStock" title="In Stock" params="${filterParams}" />
                                 
-                                <th>Unit Of Measure</th>
+                                <th>Unit</th>
 
                                 <th></th>
@@ -145,4 +147,8 @@
                                 <td onclick='window.location = "${request.getContextPath()}/inventoryItemDetailed/show/${inventoryItemInstance.id}"' >
                                     ${fieldValue(bean:inventoryItemInstance, field:'description')}
+                                </td>
+                            
+                                <td onclick='window.location = "${request.getContextPath()}/inventoryItemDetailed/show/${inventoryItemInstance.id}"' >
+                                    ${fieldValue(bean:inventoryItemInstance, field:'inventoryGroup')}
                                 </td>
                             
