Folks,
I should be able to do this at the top of my flow definition (SWF 2.0.8.RELEASE) to capture a request parameter into a flowScope variable, right?
It doesn't work so I have to do this in a transition to capture the value:Code:<input name="command" value="flowScope.commandId" type="int"/>
Is this a bug or am I mis-reading the documentation?Code:<transition to="detail" on="detail"> <set name="requestScope.commandId" value="requestParameters.command" type="int" /> <evaluate expression="myExpressionHere.get(commandId)" result="flowScope.xyz"/> </transition>
Jon


Reply With Quote