- Timestamp:
- Feb 13, 2011, 9:14:23 PM (14 years ago)
- Location:
- trunk/grails-app/views/taskProcedureDetailed
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/taskProcedureDetailed/_documentReference.gsp
r798 r806 2 2 <tr id="documentReferenceLazyList${i}" class="docRef-div" <g:if test="${docRef?.toBeDeleted}">style="display:none;"</g:if>> 3 3 4 <td valign="top" class=" value${hasErrors(bean:docRef,field:'name','errors')}">4 <td valign="top" class="${hasErrors(bean:docRef,field:'name','errors')}"> 5 5 <g:hiddenField name="documentReferenceLazyList[${i}].toBeDeleted" value="${docRef?.toBeDeleted}"/> 6 6 <g:hiddenField name='documentReferenceLazyList[${i}].isNew' value="${docRef?.id == null?'true':'false'}"/> 7 7 <g:textArea name="documentReferenceLazyList[${i}].name" 8 8 value="${docRef?.name}" 9 style="width:100%;height:auto;" 10 rows="2" 11 cols="25"/> 9 style="width:420px;height:auto;"/> 12 10 </td> 13 11 14 <td valign="top" class=" value${hasErrors(bean:docRef,field:'location','errors')}">12 <td valign="top" class="${hasErrors(bean:docRef,field:'location','errors')}"> 15 13 <g:textArea name="documentReferenceLazyList[${i}].location" 16 14 value="${docRef?.location}" 17 style="width:100%;height:auto;" 18 rows="2" 19 cols="25"/> 15 style="width:420px;height:auto;"/> 20 16 </td> 21 17 -
trunk/grails-app/views/taskProcedureDetailed/_documentReferences.gsp
r798 r806 39 39 <tr> 40 40 41 <th>Document Reference </th>41 <th>Document Reference Name</th> 42 42 <th>Location</th> 43 43 <th></th> -
trunk/grails-app/views/taskProcedureDetailed/_maintenanceAction.gsp
r798 r806 2 2 <tr id="maintenanceActionLazyList${i}" class="ma-div" <g:if test="${ma?.toBeDeleted}">style="display:none;"</g:if>> 3 3 4 <td valign="top" class=" value${hasErrors(bean:tp,field:/maintenanceActionLazyList[$i].procedureStepNumber/,'errors')}">4 <td valign="top" class="${hasErrors(bean:tp,field:/maintenanceActionLazyList[$i].procedureStepNumber/,'errors')}"> 5 5 <g:hiddenField name="maintenanceActionLazyList[${i}].toBeDeleted" value="${ma?.toBeDeleted}"/> 6 6 <g:hiddenField name='maintenanceActionLazyList[${i}].isNew' value="${ma?.id == null?'true':'false'}"/> … … 10 10 </td> 11 11 12 <td valign="top" class=" value${hasErrors(bean:ma,field:'assetSubItem','errors')}">12 <td valign="top" class="${hasErrors(bean:ma,field:'assetSubItem','errors')}"> 13 13 <g:select optionKey="id" 14 14 from="${assemblies}" … … 19 19 </td> 20 20 21 <td valign="top" class=" value${hasErrors(bean:ma,field:'description','errors')}">21 <td valign="top" class="${hasErrors(bean:ma,field:'description','errors')}"> 22 22 <g:textArea name="maintenanceActionLazyList[${i}].description" 23 23 value="${ma?.description}" 24 style="width:100%;height:auto;" 25 rows="2" 26 cols="25"/> 24 style="width:280px;height:auto;"/> 27 25 </td> 28 26 29 <td valign="top" class=" value${hasErrors(bean:ma,field:'pageRef','errors')}">27 <td valign="top" class="${hasErrors(bean:ma,field:'pageRef','errors')}"> 30 28 <g:textArea name="maintenanceActionLazyList[${i}].pageRef" 31 29 value="${ma?.pageRef}" 32 style="width:100%;height:auto;" 33 rows="2" 34 cols="25"/> 30 style="width:100px;height:auto;"/> 35 31 </td> 36 32
Note: See TracChangeset
for help on using the changeset viewer.