source: trunk/grails-app/views/wizard/common/_buttons.gsp @ 87

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