Changeset 279 for trunk/grails-app/views
- Timestamp:
- Mar 17, 2010, 3:18:54 PM (12 years ago)
- Location:
- trunk/grails-app/views/wizard
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/views/wizard/common/_error.gsp
r250 r279 36 36 37 37 // show error dialog 38 $(function() { 39 $("div#wizardError").dialog({ 40 modal: true, 41 width: 600, 42 buttons: { 43 Ok: function() { 44 $(this).dialog('close'); 45 } 38 $("div#wizardError").dialog({ 39 modal: true, 40 width: 600, 41 buttons: { 42 Ok: function() { 43 $(this).dialog('close'); 46 44 } 47 } );45 } 48 46 }); 49 47 </script> -
trunk/grails-app/views/wizard/common/_navigation.gsp
r247 r279 15 15 %> 16 16 <div class="navigation"> 17 <g:if test="${page>1 }"><wizard:ajaxButton name="previous" value="« prev" url="[controller:'wizard',action:'pages']" update="[success:'wizardPage',failure:'wizardError']" afterSuccess="onWizardPage()" class="prevnext" /></g:if>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 18 <g:if test="${page>1 && page<pages.size}"> | </g:if> 19 19 <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> -
trunk/grails-app/views/wizard/pages/_done.gsp
r275 r279 22 22 </span> 23 23 24 <script type="text/javascript"> 25 // disable redirect warning 26 var warnOnRedirect = false; 27 </script> 28 24 29 </wizard:pageContent>
Note: See TracChangeset
for help on using the changeset viewer.