Changeset 265 for trunk/grails-app/views/appConfig/create.gsp
- Timestamp:
- Jan 14, 2010, 8:35:31 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/appConfig/create.gsp
r234 r265 31 31 </td> 32 32 <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'name','errors')}"> 33 <input type="text" maxlength="50" id="name" name="name" value="${fieldValue(bean:appConfigInstance,field:'name')}"/> 33 <input type="text" maxlength="100" id="name" name="name" value="${fieldValue(bean:appConfigInstance,field:'name')}"/> 34 </td> 35 </tr> 36 37 <tr class="prop"> 38 <td valign="top" class="name"> 39 <label for="value">Value:</label> 40 </td> 41 <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'value','errors')}"> 42 <textarea rows="5" cols="40" name="value">${fieldValue(bean:appConfigInstance, field:'value')}</textarea> 34 43 </td> 35 44 </tr> … … 40 49 </td> 41 50 <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'description','errors')}"> 42 <input type="text" maxlength="100" id="description" name="description" value="${fieldValue(bean:appConfigInstance,field:'description')}"/> 43 </td> 44 </tr> 45 46 <tr class="prop"> 47 <td valign="top" class="name"> 48 <label for="value">Value:</label> 49 </td> 50 <td valign="top" class="value ${hasErrors(bean:appConfigInstance,field:'value','errors')}"> 51 <input type="text" id="value" name="value" value="${fieldValue(bean:appConfigInstance,field:'value')}"/> 51 <textarea rows="5" cols="40" name="description">${fieldValue(bean:appConfigInstance, field:'description')}</textarea> 52 52 </td> 53 53 </tr>
Note: See TracChangeset
for help on using the changeset viewer.