/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?xml version="1.0" encoding="UTF-8"?> <flow xmlns="http://www.springframework.org/schema/webflow" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/webflow http://www.springframework.org/schema/webflow/spring-webflow-1.0.xsd"> <start-state idref="enterVoterInfo"/> <view-state id="enterVoterInfo" view="webflows/voting/enterVoterInfo"> <transition on="next" to="enterPartyInfo"/> </view-state> <view-state id="enterPartyInfo" view="webflows/voting/enterPartyInfo"> <transition on="previous" to="enterVoterInfo"/> <transition on="next" to="enterVote"/> </view-state> <view-state id="enterVote" view="webflows/voting/enterVoteInfo"> <transition on="previous" to="enterPartyInfo"/> <transition on="next" to="confirmState"/> </view-state> <end-state id="confirmState" view="webflows/voting/confirmVote"></end-state> </flow>