posted 6 years ago
I have to redirect a call from a flow.xml page to another page of another flow.xml .
They are created folders as follows:
- APIFlow
detalleApi.xhtml
flow.xml
- inmueblesFlow
detalleInmueble.xhtml
flow.xml
The flow from where I have to call it like
<var name="inmueblesBean" class="es.foment.crm.web.InmueblesBean">
<view-state id="detalleInmueble">
<transition on="detail" to="detalleInmueble"/>
<transition on="global" to="XXXXfromAnotherFlow"/>
</view-state>
The flow where I want to go is like :
<var name="APIBean" class="es.foment.crm.web.APIBean">
<view-state id="detalleAPI">
<transition on="detail" to="detalleAPI"/>
<transition on="global" to="listaAPI"/>
</view-state>
I want to go to the "listaApi" called from the "listadoApi()" of the class APIBean