source: trunk/grails-app/views/wizard/pages/_eventDescriptions.gsp @ 246

Last change on this file since 246 was 246, checked in by duh, 14 years ago
  • increased session lifetime to 7 days
  • improved wizard study template selector
  • wizard study page now contains study template fields (which are not yet handled)
  • added protocol selector to event descriptions page
  • renamed the 'blood sampling' protocol to 'Blood sampling' (it was duplicately named 'Liver sampling')
File size: 3.2 KB
Line 
1<%
2/**
3 * Event Descriptions page
4 *
5 * @author  Jeroen Wesbeek
6 * @since   20100118
7 * @package wizard
8 * @see     dbnp.studycapturing.WizardTagLib::previousNext
9 * @see     dbnp.studycapturing.WizardController
10 *
11 * Revision information:
12 * $Rev$
13 * $Author$
14 * $Date$
15 */
16%>
17<wizard:pageContent>
18        <span class="info">
19                <span class="title">Describe all unique event types that occur in your study</span>
20                These unique events are, for example, treatments, challenges and sampling events. Every event description
21                should be unique. If your study, for example, samples both blood as well as tissue on one or more subjects,
22                then create two sample descriptions. One for 'sampling blood', and one for 'sampling tissue'.
23        </span>
24
25        <wizard:textFieldElement name="name" description="Name" error="name" value="${values?.name}">
26                The name of the event description you are creating
27        </wizard:textFieldElement>
28        <wizard:textFieldElement name="description" description="Description" error="description" value="${values?.description}">
29                A short description summarizing your event description
30        </wizard:textFieldElement>
31        <wizard:protocolElement name="protocol" description="Protocol" error="protocol" value="${values?.protocol}" >
32                Select the protocol for this event description
33        </wizard:protocolElement>
34        <wizard:checkBoxElement name="isSamplingEvent" description="Sampling event" error="isSamplingEvent" value="${values?.isSamplingEvent}">
35                Is this a sampling event description?
36        </wizard:checkBoxElement>
37        <wizard:buttonElement name="add" value="Add" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()"/>
38<g:if test="${eventDescriptions}">
39        <div class="table">
40                <div class="header">
41                        <div class="firstColumn">#</div>
42                        <div class="firstColumn"></div>
43                        <div class="column">name</div>
44                        <div class="column">description</div>
45                        <div class="column">protocol</div>
46                        <div class="column">sampling event</div>
47                        <div class="column">protocol</div>
48                </div>
49        <g:each var="eventDescription" status="i" in="${eventDescriptions}">
50                <div class="row">
51                        <div class="firstColumn">${i+1}</div>
52                        <div class="firstColumn">
53                                <wizard:ajaxButton name="delete" src="../images/icons/famfamfam/delete.png" alt="delete this event" class="famfamfam" value="-" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" before="\$(\'input[name=do]\').val(${i});" afterSuccess="onWizardPage()" />
54                        </div>
55                        <div class="column"><g:textField name="eventDescription_${i}_name" value="${eventDescription.name}" size="12" maxlength="12" /></div>
56                        <div class="column"><g:textField name="eventDescription_${i}_description" value="${eventDescription.description}" size="12" maxlength="12" /></div>
57                        <div class="column"><wizard:protocolSelect name="eventDescription_${i}_protocol" value="${eventDescription.protocol}" /></div>
58                        <div class="column"><g:checkBox name="eventDescription_${i}_isSamplingEvent" value="${eventDescription.isSamplingEvent}" /></div>
59                        <div class="column"><g:if test="${eventDescription.protocol}">${eventDescription.protocol}</g:if><g:else>-</g:else></div>
60                </div>
61        </g:each>
62        </div>
63</g:if>
64</wizard:pageContent>
Note: See TracBrowser for help on using the repository browser.