Changeset 585
- Timestamp:
- Jun 18, 2010, 12:49:53 PM (11 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/studycapturing/WizardController.groovy
r578 r585 144 144 flow.remove('eventGroups') 145 145 flow.remove('eventTemplates') 146 println flow147 146 148 147 // set 'quicksave' variable -
trunk/grails-app/taglib/dbnp/studycapturing/WizardTagLib.groovy
r571 r585 1220 1220 // add a dummy field 1221 1221 selectAttrs.from.add(0,'') 1222 selectAttrs.keys.add(0,'') 1222 1223 1223 1224 out << "Person: " + select(selectAttrs) … … 1229 1230 */ 1230 1231 def _roleSelect = { attrs -> 1231 println(attrs);1232 1232 def selectAttrs = new LinkedHashMap(); 1233 1233 … … 1243 1243 // add a dummy field 1244 1244 selectAttrs.from.add(0,'') 1245 selectAttrs.keys.add(0,'') 1245 1246 1246 1247 out << "Role: " + select(selectAttrs) -
trunk/grails-app/views/wizard/pages/_study.gsp
r527 r585 27 27 Depending on the chosen template specific fields can be filled out. If none of the templates contain all the necessary fields, a new template can be defined (based on other templates). 28 28 </wizard:templateElement> 29 <g:if test="${study}"> <wizard:templateElements entity="${study}" /></g:if>30 29 <g:if test="${study}"> 30 <wizard:templateElements entity="${study}" /> 31 31 <wizard:publicationSelectElement name="publication" value="${study?.publications}" /> 32 32 <wizard:contactSelectElement name="contacts" value="${study?.persons}" /> 33 </g:if> 33 34 34 35 </wizard:pageContent>
Note: See TracChangeset
for help on using the changeset viewer.