Last change
on this file since 341 was
341,
checked in by duh, 13 years ago
|
- refactored wizard start page so that the big green buttons actually work
- added a new page to load and modify a study, however this page is not yet functional
- removed obsolete images
|
-
Property svn:keywords set to
Date Rev Author
|
File size:
1.1 KB
|
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: 341 $ |
---|
12 | * $Author: duh $ |
---|
13 | * $Date: 2010-04-14 09:36:53 +0000 (wo, 14 apr 2010) $ |
---|
14 | */ |
---|
15 | %> |
---|
16 | <div class="navigation"> |
---|
17 | <g:if test="${page>1 && page<pages.size}"><wizard:ajaxButton name="previous" value="« prev" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" class="prevnext" /></g:if> |
---|
18 | <g:if test="${cancel}"> |
---|
19 | [ <wizard:ajaxButton name="cancel" value="cancel" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" class="prevnext" /> ] |
---|
20 | </g:if> |
---|
21 | <g:elseif test="${page>1 && page<pages.size}"> |
---|
22 | | |
---|
23 | </g:elseif> |
---|
24 | <g:if test="${page<pages.size}"><wizard:ajaxButton name="next" value="next »" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" class="prevnext" /></g:if> |
---|
25 | </div> |
---|
Note: See
TracBrowser
for help on using the repository browser.