Hello All, I have two zones in my page:
<t:zone t:id="resultsZone" id="resultsZone" show="show" update="show">....</t:zone> <t:zone t:id="topTabsZone" id="topTabsZone" show="show" update="show">....</t:zone> I have an actionlink bound to a handler: public Object onActionFromChanged() { topTab = TopTab.Updated; initUpdate(); return new MultiZoneUpdate("resultsZone", resultsZone).add("topTabsZone", topTabsZone); } When the page first loads, I see this in the HTML: <div id="resultsZone" class="t-zone">....</div> and similar for topTabsZone. All well and good. But after I trigger an actionlink, the page updates fine, but for both zones i now have nested divs, e.g: <div id="resultsZone" class="t-zone"> <div id="resultsZone" class="t-zone">... </div> </div> Subsequent clicks to the actionlink do not result in further nested divs, just the one. Am i doing something wrong? I've only just noticed this today, I upgraded from T5.1 to T5.2 this morning so don't know if a co-incidence. Like to get rid if possible, it means I have two divs with the same ID in the page. Thanks Richard.