Here is the situation: In a page I send data to the backend using ajax. This all works fine, it stores the information in the database as it should and all. Now when I press the refresh button on the browser, it still contains the old data (I don't update the form manually). The reason for this I think it is because my transition is never fired since the refresh is not part of the flow. How can I force reloading the form? How do you define such in the flow xml?
below is part of the webflow xml
<action-state id="showProposal">
<evaluate expression="portfolioAction.showProposalFormAction" />
<transition on="success" to="showProposalView" />
</action-state>
<view-state id="showProposalView" view="/swf/proposal/proposal">
<transition on="storeProposal" to="storeProposalView" >
<evaluate expression="portfolioAction.storeProposalFormAction" />
</transition>
<transition on="applySelection" to="showProposalView">
<evaluate expression="portfolioForm.bindAndValidate" />
<evaluate expression="portfolioAction.showProposalFormAction" />
</transition>
</view-state>