Return to Snippet

Revision: 5340
at February 28, 2008 11:03 by krimple


Initial Code
<?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>  

Initial URL


Initial Description


Initial Title
Simple Webflow Configuration

Initial Tags
textmate

Initial Language
Other