source: trunk/grails-app/views/wizard/common/_navigation.gsp @ 88

Last change on this file since 88 was 88, checked in by duh, 14 years ago
  • refactored the wizard code a bit
  • Property svn:keywords set to Rev Author Date
File size: 744 bytes
Line 
1<%
2/**
3 * Wizard navigational buttons
4 *
5 * @author  Jeroen Wesbeek
6 * @since   20100113
7 * @package wizard
8 * @see     dbnp.studycapturing.WizardController
9 *
10 * Revision information:
11 * $Rev: 88 $
12 * $Author: duh $
13 * $Date: 2010-01-14 14:00:05 +0000 (do, 14 jan 2010) $
14 */
15%>
16    <div class="navigation">
17      <g:if test="${page>1}"><wizard:ajaxButton name="previous" value="&laquo; prev" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" class="prevnext" /></g:if>
18      <g:if test="${page>1 && page<pages.size}"> | </g:if>
19      <g:if test="${page<pages.size}"><wizard:ajaxButton name="next" value="next &raquo;" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" class="prevnext" /></g:if>
20    </div>
Note: See TracBrowser for help on using the repository browser.