Changeset 512 for trunk


Ignore:
Timestamp:
Jun 2, 2010, 5:24:04 PM (13 years ago)
Author:
duh
Message:
  • added 'wait' page before saving...
Location:
trunk
Files:
2 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/grails-app/controllers/dbnp/studycapturing/WizardController.groovy

    r510 r512  
    1212 * The wizard controller handles the handeling of pages and data flow
    1313 * through the study capturing wizard.
    14  *
    15  * TODO: refactor the 'handle*' methods to work as subflows instead
    16  *               of methods outside of the flow
    1714 *
    1815 * @author Jeroen Wesbeek
     
    484481                        on("toGroups").to "groups"
    485482                        on("previous").to "samples"
     483                        on("next").to "waitForSave"
     484                }
     485
     486                waitForSave {
     487                        render(view: "_wait")
     488                        onRender {
     489                                flow.page = 8
     490                        }
    486491                        on("next").to "save"
    487492                }
Note: See TracChangeset for help on using the changeset viewer.