I have the following structure in my DOM: <div id="someZone" class="t-zone"> <div id="someGrid" class="t-data-grid"> ... </div> </div>
The zone is defined like that: @Component private Zone someZone; <t:zone t:id="someZone" id="someZone" t:update="show"> and updated via a MultiZoneUpdate: return new MultiZoneUpdate("someOtherZone", someOtherZone).add("someZone", someZone); After the zone update the DOM looks like that: <div id="someZone" class="t-zone"> <div id="someZone" class="t-zone"> <div id="someGrid-12902522581" class="t-data-grid"> ... </div> </div> </div> Why is the someZone duplicated and how to prevent the generated id for the grid? Thanks! -- View this message in context: http://old.nabble.com/Zone-Update-issue-tp28777734p28777734.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