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

Last change on this file since 86 was 86, checked in by duh, 14 years ago
File size: 662 bytes
Line 
1<%
2/**
3 * Wizard template
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$
13 * $Author$
14 * $Date$
15 */
16%>
17  <g:setProvider library="jquery"/>
18  <div id="wizard" style="border:1px solid black;">
19    <h1>Proof of concept AJAXified Grails Webflow Wizard</h1>
20    <g:form action="pages" name="_wizard" >
21    <div id="wizardContent" style="border:1px solid blue;">
22      <g:render template="pages/one"/>
23    </div>
24    <div id="wizardError" style="border:1px solid red;">errors go in here</div>
25    </g:form>
26  </div>
Note: See TracBrowser for help on using the repository browser.