Changeset 35 for trunk/src/grails-app/views/taskGroup
- Timestamp:
- Jan 26, 2009, 5:26:11 AM (16 years ago)
- Location:
- trunk/src/grails-app/views/taskGroup
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/grails-app/views/taskGroup/create.gsp
r21 r35 32 32 </td> 33 33 <td valign="top" class="value ${hasErrors(bean:taskGroupInstance,field:'name','errors')}"> 34 <input type="text" id="name" name="name" value="${fieldValue(bean:taskGroupInstance,field:'name')}"/>34 <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:taskGroupInstance,field:'name')}"/> 35 35 </td> 36 36 </tr> … … 41 41 </td> 42 42 <td valign="top" class="value ${hasErrors(bean:taskGroupInstance,field:'description','errors')}"> 43 <input type="text" id="description" name="description" value="${fieldValue(bean:taskGroupInstance,field:'description')}"/>43 <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:taskGroupInstance,field:'description')}"/> 44 44 </td> 45 45 </tr> -
trunk/src/grails-app/views/taskGroup/edit.gsp
r21 r35 34 34 </td> 35 35 <td valign="top" class="value ${hasErrors(bean:taskGroupInstance,field:'name','errors')}"> 36 <input type="text" id="name" name="name" value="${fieldValue(bean:taskGroupInstance,field:'name')}"/>36 <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:taskGroupInstance,field:'name')}"/> 37 37 </td> 38 38 </tr> … … 43 43 </td> 44 44 <td valign="top" class="value ${hasErrors(bean:taskGroupInstance,field:'description','errors')}"> 45 <input type="text" id="description" name="description" value="${fieldValue(bean:taskGroupInstance,field:'description')}"/>45 <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:taskGroupInstance,field:'description')}"/> 46 46 </td> 47 47 </tr>
Note: See TracChangeset
for help on using the changeset viewer.