I have a question regarding spring webflow and I was hoping if someone could tell me if it is possible to have a "view-state" that when a particular transition event occurs it remains in the same "view-state" at it was before the event, BUT without a reload of the page. So basically, given the sample below a transition with an empty "to" will it still cause the page to reload? Is there any way to avoid this?
Thanks in advance
<view-state id="someState" model="aModelDTO" view="aview">
<binder>
<binding property="prop1" required="true"/>
<binding property="prop2" required="true"/>
...
</binder>
<transition on="next" to="bla" validate="true"/>
<transition on="cancel" to="cancel" bind="false"/>
<transition on="do-nothing" to=""/>
</view-state>