Index: trunk/grails-app/domain/InventoryItem.groovy
===================================================================
--- trunk/grails-app/domain/InventoryItem.groovy	(revision 421)
+++ trunk/grails-app/domain/InventoryItem.groovy	(revision 422)
@@ -8,4 +8,5 @@
     String name
     String description = ""
+    String comment = ""
     String manufacturersPartNumber
     BigDecimal estimatedUnitPriceAmount
@@ -35,5 +36,6 @@
         picture(nullable:true)
         name(unique:true, blank:false, maxSize:50)
-        description()
+        description(maxSize:255)
+        comment(maxSize:500)
         unitsInStock(min:0)
         unitOfMeasure()
Index: trunk/grails-app/views/inventoryItemDetailed/create.gsp
===================================================================
--- trunk/grails-app/views/inventoryItemDetailed/create.gsp	(revision 421)
+++ trunk/grails-app/views/inventoryItemDetailed/create.gsp	(revision 422)
@@ -31,6 +31,6 @@
                                     <input type="text" class="description" maxlength="50" id="name" name="name" value="${fieldValue(bean:inventoryItemInstance,field:'name')}"/>
                                 </td>
-                            </tr> 
-                        
+                            </tr>
+                            
                             <tr class="prop">
                                 <td valign="top" class="name">
@@ -38,5 +38,14 @@
                                 </td>
                                 <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'description','errors')}">
-                                    <input type="text" class="description" id="description" name="description" value="${fieldValue(bean:inventoryItemInstance,field:'description')}"/>
+                                    <textarea rows="5" cols="40" name="description">${fieldValue(bean:inventoryItemInstance, field:'description')}</textarea>
+                                </td>
+                            </tr>
+                        
+                            <tr class="prop">
+                                <td valign="top" class="name">
+                                    <label for="comment">Comment:</label>
+                                </td>
+                                <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'comment','errors')}">
+                                    <textarea rows="5" cols="40" name="comment">${fieldValue(bean:inventoryItemInstance, field:'comment')}</textarea>
                                 </td>
                             </tr>
Index: trunk/grails-app/views/inventoryItemDetailed/edit.gsp
===================================================================
--- trunk/grails-app/views/inventoryItemDetailed/edit.gsp	(revision 421)
+++ trunk/grails-app/views/inventoryItemDetailed/edit.gsp	(revision 422)
@@ -57,8 +57,15 @@
                                     <label for="description">Description:</label>
                                 </td>
-                                <td valign="top">
-                                    <input class="description ${hasErrors(bean:inventoryItemInstance,field:'description','errors')}"
-                                                type="text" id="description" name="description"
-                                                value="${fieldValue(bean:inventoryItemInstance,field:'description')}"/>
+                                <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'description','errors')}">
+                                    <textarea rows="5" cols="40" name="description">${fieldValue(bean:inventoryItemInstance, field:'description')}</textarea>
+                                </td>
+                            </tr>
+
+                            <tr class="prop">
+                                <td valign="top" class="name">
+                                    <label for="comment">Comment:</label>
+                                </td>
+                                <td valign="top" class="value ${hasErrors(bean:inventoryItemInstance,field:'comment','errors')}">
+                                    <textarea rows="5" cols="40" name="comment">${fieldValue(bean:inventoryItemInstance, field:'comment')}</textarea>
                                 </td>
                             </tr>
Index: trunk/grails-app/views/inventoryItemDetailed/show.gsp
===================================================================
--- trunk/grails-app/views/inventoryItemDetailed/show.gsp	(revision 421)
+++ trunk/grails-app/views/inventoryItemDetailed/show.gsp	(revision 422)
@@ -28,4 +28,13 @@
             </g:hasErrors>
 
+            <div class="tabHeader">
+                <h1 class="taskHeader">
+                    ${inventoryItemInstance.name}
+                </h1>
+                ${fieldValue(bean:inventoryItemInstance, field:'description')}
+            </div>
+
+            <br/>
+
             <richui:tabView id="tabView">
 
@@ -105,13 +114,7 @@
 
                                     <tr class="prop">
-                                        <td valign="top" class="name">Name:</td>
-
-                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'name')}</td>
-                                    </tr>
-
-                                    <tr class="prop">
-                                        <td valign="top" class="name">Description:</td>
-
-                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'description')}</td>
+                                        <td valign="top" class="name">Comment:</td>
+
+                                        <td valign="top" class="value">${fieldValue(bean:inventoryItemInstance, field:'comment')}</td>
                                     </tr>
 
