Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/controllers/dbnp/studycapturing/WizardController.groovy
r510 r512 12 12 * The wizard controller handles the handeling of pages and data flow 13 13 * through the study capturing wizard. 14 *15 * TODO: refactor the 'handle*' methods to work as subflows instead16 * of methods outside of the flow17 14 * 18 15 * @author Jeroen Wesbeek … … 484 481 on("toGroups").to "groups" 485 482 on("previous").to "samples" 483 on("next").to "waitForSave" 484 } 485 486 waitForSave { 487 render(view: "_wait") 488 onRender { 489 flow.page = 8 490 } 486 491 on("next").to "save" 487 492 }
Note: See TracChangeset
for help on using the changeset viewer.