The is the JSP:
Code:
<form>
<select name="locale" size="1" onChange="javascript:document.forms[0].submit();">
<option value="null">Select</option>
<option value="en">English</option>
<option value="fr">Francais</option>
</form>
This is the URL after selecting a language:
Code:
http://localhost:9080/app/app.htm?locale=fr
This is my flow.xml (notice I only have an eventId for the continue button):
Code:
<view-state id="someState" view="someState">
<entry-actions>
<action bean="some.formAction" method="setupForm" />
</entry-actions>
<transition on="continue" to="nextState">
<action bean="some.formAction" method="bindAndValidate"/>
</transition>
</view-state>
So it seems to redisplay the same view state. I dont think its actually getting to SWF.