Files
spring-webflow-samples/webflow-showcase/src/main/webapp/WEB-INF/flows/embedded-flow/step1.jsp
2013-01-30 12:51:32 -05:00

11 lines
628 B
Plaintext

<div id="embeddedFlow">
<p class="notice">This is step 1 of the embedded flow</p>
<form id="step1" action="${flowExecutionUrl}" method="POST">
<button id="cancel" type="submit" name="_eventId_cancel">Cancel</button>
<button id="next" type="submit" name="_eventId_next">Next &gt;&gt;</button>
<script type="text/javascript">
Spring.addDecoration(new Spring.AjaxEventDecoration({elementId:'next',event:'onclick',formId:'step1',params:{fragments:"body"}}));
Spring.addDecoration(new Spring.AjaxEventDecoration({elementId:'cancel',event:'onclick',formId:'step1',params:{fragments:"body"}}));
</script>
</form>
</h5>