For 5.3.8, you should use ZoneManager to update zones, as that's the JS class which has all the wiring. You just cannot make an AJAX call directly and expect the zone to update itself. There's one nice example of how to do it in https://issues.apache.org/jira/browse/TAP5-569.

// where zoneId contains the HTML id of the zone you want to update
var zoneManager = Tapestry.findZoneManagerByZoneId( zoneId );
if ( zoneManager != null ) {
  zoneManager.updateFromURL( url );  // where url contains the event URL.
}


--
Thiago H. de Paula Figueiredo
Tapestry, Java and Hibernate consultant and developer
http://machina.com.br

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

Reply via email to