how to redirect to two differents page after button clic
Hello,
I'm new developper in Spring Webflow and i want to redirect my page in same page or another page after button clic.
The webflow code for this state is :
Code:
<view-state id="editEntity" model="entity">
<!-- Action button -->
<transition on="save" validate="false">
<evaluate expression="entityController.saveEntity(flowScope.entity)"/>
</transition>
</view-state>
How to add in this code this decision :
Code:
If saveEntity return 'true' , i'll redirect in other page 'moreDetail'.
else leave at 'editEntity'
Thank's for your help