Changeset 356 for trunk/grails-app
- Timestamp:
- Apr 20, 2010, 1:28:45 PM (11 years ago)
- Location:
- trunk/grails-app
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/studycapturing/WizardController.groovy
r350 r356 151 151 } 152 152 } 153 on("refresh") { 154 flash.values = params 155 }.to "subjects" 153 156 on("add") { 154 157 println params -
trunk/grails-app/taglib/dbnp/studycapturing/WizardTagLib.groovy
r353 r356 461 461 // define 'from' 462 462 attrs.from = from 463 464 // add 'rel' attribute 465 attrs.rel = 'term' 463 466 464 467 out << select(attrs) -
trunk/grails-app/views/wizard/common/_navigation.gsp
r341 r356 24 24 <g:if test="${page<pages.size}"><wizard:ajaxButton name="next" value="next »" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" class="prevnext" /></g:if> 25 25 </div> 26 27 <script type="text/javascript"> 28 function refreshWebFlow() { 29 <wizard:ajaxSubmitJs name="refresh" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" class="prevnext" /> 30 } 31 </script> -
trunk/grails-app/views/wizard/index.gsp
r311 r356 23 23 <script type="text/javascript" src="${resource(dir: 'js', file: 'table-editor.min.js')}"></script> 24 24 <script type="text/javascript" src="${resource(dir: 'js', file: 'ontology-chooser.min.js')}"></script> 25 <script type="text/javascript" src="${resource(dir: 'js', file: 'SelectAddMore.min.js')}"></script> 25 26 <script type="text/javascript" src="${resource(dir: 'js', file: 'timepicker-0.2.1.min.js')}"></script> 26 27 <script type="text/javascript" src="${resource(dir: 'js', file: 'wizard.min.js')}"></script> … … 31 32 <script type="text/javascript" src="${resource(dir: 'js', file: 'table-editor.js')}"></script> 32 33 <script type="text/javascript" src="${resource(dir: 'js', file: 'ontology-chooser.js')}"></script> 34 <script type="text/javascript" src="${resource(dir: 'js', file: 'SelectAddMore.js')}"></script> 33 35 <script type="text/javascript" src="${resource(dir: 'js', file: 'timepicker-0.2.1.js')}"></script> 34 36 <script type="text/javascript" src="${resource(dir: 'js', file: 'wizard.js')}"></script> -
trunk/grails-app/views/wizard/pages/_subjects.gsp
r353 r356 26 26 The number of subjects to add to your study 27 27 </wizard:textFieldElement> 28 <wizard:ontologyElement name="species" description="of species" value="" ontology="1132">29 The species of the subjects you would like to add to your study30 </wizard:ontologyElement>31 28 <wizard:termElement name="species" description="of species" value="" ontology="1132"> 32 29 The species of the subjects you would like to add to your study
Note: See TracChangeset
for help on using the changeset viewer.