source:
trunk/grails-app/views/eventDescription/showMyProtocolEmpty.gsp
@
150
Last change on this file since 150 was 150, checked in by jahn, 12 years ago | |
---|---|
File size: 427 bytes |
Line | |
---|---|
1 | <% def list = [] %> |
2 | <g:each in="${protocolInstance.parameters}" > <% list.add( it )%> </g:each> |
3 | <% list.sort{ a,b -> a.name <=> b.name }%> |
4 | |
5 | <g:each in="${list}"> |
6 | |
7 | <tr class="prop"> |
8 | <td valign="top" class="name" width=200 > |
9 | <label for="protocol"><g:message code="${it.name}" /></label> |
10 | </td> |
11 | <td valign="top" class="name"> |
12 | <g:textField name="protocolParameter.${it.id}" value="" /> |
13 | </td> |
14 | </tr> |
15 | |
16 | </g:each> |
Note: See TracBrowser
for help on using the repository browser.