Hi,

I have an embedded element that is used in two different embedding elements.
The embedded element:

<element id="SeatEntry" file="/tbs/seatEntry.xml">
    <flowlink srcexit="seatEntryList" destid="ManageReservation"
embedding="cancel"/>
    <datalink srcoutput="reservationId" destid="ManageReservation"
destinput="reservationId"/>
</element>

Code snippet (as meant for being embedded by the ManageReservation element):

if( "Remove".equals( action ) ) {
  reservationController.removeSeat( se_Form.getSeatId() );
  setOutput( "reservationId", se_Form.getReservationId() );
  exit( "seatEntryList" );
}

However, embedded by another (the BrowseTravellers) element this piece of
code also works fine: a pleasant surprise!!
Does that mean that the destid of the flowlink is not used here?

Embedded elements are great! I am using them more and more!

Regards,
Adriaan





_______________________________________________
Rife-users mailing list
[email protected]
http://lists.uwyn.com/mailman/listinfo/rife-users

Reply via email to