source: trunk/grails-app/views/wizard/common/_wizard.gsp @ 342

Last change on this file since 342 was 342, checked in by duh, 13 years ago
  • restyled wizard tabs
  • made info and todo boxes only appear in development, not in production and test
  • Property svn:keywords set to Date Rev Author
File size: 688 bytes
Line 
1<%
2        /**
3         * Wizard template with first page rendered
4         *
5         * @author Jeroen Wesbeek
6         * @since 20100113
7         * @package wizard
8         * @see dbnp.studycapturing.WizardTagLib
9         * @see dbnp.studycapturing.WizardController
10         *
11         * Revision information:
12         * $Rev: 342 $
13         * $Author: duh $
14         * $Date: 2010-04-14 13:38:39 +0000 (wo, 14 apr 2010) $
15         */
16%>
17<div id="wizard" class="wizard">
18        <h1>Study capture wizard</h1>
19        <g:form action="pages" name="wizardForm" id="wizardForm">
20        <g:hiddenField name="do" value="" />
21                <div id="wizardPage">
22                        <wizard:ajaxFlowRedirect form="form#wizardForm" name="next" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" />
23                </div>
24        </g:form>
25</div>
Note: See TracBrowser for help on using the repository browser.