I *think* you want to render some blocks instead of the zone's body

tml
<t:block id="redBlock">
   ${variable}
</t:block>
<t:block id="blueBlock">
   ${variable}
</t:block>

java
@Property 
private String variable;

@Inject 
Block redBlock;

@Inject 
Block blueBlock;

public void onSomeEvent(String variable) {
   this.variable = variable;
   ajaxResponseRenderer.addRender("zone1", redBlock); 
   ajaxResponseRenderer.addRender("zone2", blueBlock); 
}



--
View this message in context: 
http://tapestry.1045711.n5.nabble.com/Updating-multiple-zones-inside-a-loop-tp5714063p5714066.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