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

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

Improve html and css formatting of taskProcedure edit and create views.

File size: 1.1 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="${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:420px;height:auto;"/>
10        </td>
11
12        <td valign="top" class="${hasErrors(bean:docRef,field:'location','errors')}">
13            <g:textArea name="documentReferenceLazyList[${i}].location"
14                                    value="${docRef?.location}"
15                                    style="width:420px;height:auto;"/>
16        </td>
17
18        <td>
19            <span class="del-docRef">
20                <img src="${resource(dir:'images/skin', file:'database_delete.png')}" />
21            </span>
22        </td>
23    </tr>
Note: See TracBrowser for help on using the repository browser.