source: trunk/grails-app/views/taskProcedureDetailed/_documentReference.gsp @ 798

Last change on this file since 798 was 798, checked in by gav, 13 years ago

Svn merge -r752:r797 branches/features/taskProcedureRework into trunk/.

File size: 1.3 KB
Line 
1
2    <tr id="documentReferenceLazyList${i}" class="docRef-div" <g:if test="${docRef?.toBeDeleted}">style="display:none;"</g:if>>
3
4        <td valign="top" class="value ${hasErrors(bean:docRef,field:'name','errors')}">
5            <g:hiddenField name="documentReferenceLazyList[${i}].toBeDeleted" value="${docRef?.toBeDeleted}"/>
6            <g:hiddenField name='documentReferenceLazyList[${i}].isNew' value="${docRef?.id == null?'true':'false'}"/>
7            <g:textArea name="documentReferenceLazyList[${i}].name"
8                                    value="${docRef?.name}"
9                                    style="width:100%;height:auto;"
10                                    rows="2"
11                                    cols="25"/>
12        </td>
13
14        <td valign="top" class="value ${hasErrors(bean:docRef,field:'location','errors')}">
15            <g:textArea name="documentReferenceLazyList[${i}].location"
16                                    value="${docRef?.location}"
17                                    style="width:100%;height:auto;"
18                                    rows="2"
19                                    cols="25"/>
20        </td>
21
22        <td>
23            <span class="del-docRef">
24                <img src="${resource(dir:'images/skin', file:'database_delete.png')}" />
25            </span>
26        </td>
27    </tr>
Note: See TracBrowser for help on using the repository browser.