Changeset 246 for trunk/grails-app/views/wizard/pages
- Timestamp:
- Mar 8, 2010, 6:25:07 PM (14 years ago)
- Location:
- trunk/grails-app/views/wizard/pages
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/wizard/pages/_eventDescriptions.gsp
r238 r246 23 23 </span> 24 24 25 <span class="info">26 <span class="title">Note!</span>27 Currently 'classification' display all terms because there is no way to machine interpret28 the different values. So please -for now- make sure to pick the Ontology reference applicable for29 events until this particular challenge is solved.30 </span>31 32 25 <wizard:textFieldElement name="name" description="Name" error="name" value="${values?.name}"> 33 26 The name of the event description you are creating … … 36 29 A short description summarizing your event description 37 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> 38 34 <wizard:checkBoxElement name="isSamplingEvent" description="Sampling event" error="isSamplingEvent" value="${values?.isSamplingEvent}"> 39 35 Is this a sampling event description? … … 47 43 <div class="column">name</div> 48 44 <div class="column">description</div> 45 <div class="column">protocol</div> 49 46 <div class="column">sampling event</div> 50 47 <div class="column">protocol</div> … … 58 55 <div class="column"><g:textField name="eventDescription_${i}_name" value="${eventDescription.name}" size="12" maxlength="12" /></div> 59 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> 60 58 <div class="column"><g:checkBox name="eventDescription_${i}_isSamplingEvent" value="${eventDescription.isSamplingEvent}" /></div> 61 59 <div class="column"><g:if test="${eventDescription.protocol}">${eventDescription.protocol}</g:if><g:else>-</g:else></div> -
trunk/grails-app/views/wizard/pages/_study.gsp
r240 r246 21 21 </span> 22 22 23 <wizard:templateElement name="template" description="Template" value="${study?.template}" entity="${dbnp.studycapturing.S ubject}" ajaxOnChange="switchTemplate" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" >23 <wizard:templateElement name="template" description="Template" value="${study?.template}" entity="${dbnp.studycapturing.Study}" addDummy="true" ajaxOnChange="switchTemplate" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" > 24 24 The template to use for this study 25 25 </wizard:templateElement> … … 45 45 <span class="info"> 46 46 <span class="title">TODO</span> 47 This page should also contain the template fields of the study template selected above (if available). This is48 scheduled for implementation in a later version47 Below you will see the template fields of the study template selected above. These fields are not yet 48 properly handled so you can ignore them for now... To be completed at a later stage 49 49 </span> 50 50 51 <wizard:templateElements entity="${study}" /> 52 51 53 </wizard:pageContent>
Note: See TracChangeset
for help on using the changeset viewer.