I simplified my problem with a small code example. Hopefully this helps. 

<t:Form t:id="form1">
        <t:Zone t:id="zoneOne" id="zoneOne">
               This select menu will trigger the popup box. 
               <t:Select t:mixins="zoneUpdater" t:clientEvent="change"
t:event="newFundingChanged" t:context="lineItemFunding.tempId"
value="lineItemFunding.funding" model="fundingModel" 
encoder="selectEncoder" zoneupdater.zone="fundingZone"/>

        </t:Zone>
</t:Form>

This is the popup box that contains a text field which will update the
select menu in form 1 on submit
<t:Zone t:id="zoneTwo" id="zoneTwo" update="fade" visible="false">
        <t:Form t:id="form2" t:zone="zoneTwo">
             <t:TextField/>
             <t:Submit>
        </t:Form>
</t:Zone>


Object onSelectedFromUpdate() {
         return new MultiZoneUpdate("zoneOne", zoneOne).add("zoneTwo",
zoneTwo);
}

--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Update-Zone-in-form1-from-form2-tp4955889p4956100.html
Sent from the Tapestry - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to