Author Login
Post Reply
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!
--
Sent from the Tapestry - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@(protected)
For additional commands, e-mail: users-help@(protected)