source: trunk/grails-app/views/query/common/_navigation.gsp @ 959

Last change on this file since 959 was 959, checked in by j.a.m.wesbeek@…, 12 years ago
  • set keyword expansion
  • Property svn:keywords set to Author Date Rev
File size: 822 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: 959 $
12 * $Author: j.a.m.wesbeek@umail.leidenuniv.nl $
13 * $Date: 2010-10-20 19:13:14 +0000 (wo, 20 okt 2010) $
14 */
15%>
16    <div class="navigation">
17      <g:if test="${page>1 && page<pages.size}"><wizard:ajaxButton name="previous" value="&laquo; prev" url="[controller:'query',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" 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:'query',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" class="prevnext" /></g:if>
20    </div>
Note: See TracBrowser for help on using the repository browser.