Hi all,
i'm doing grid editing, where each cell is in-place-editor and i'd like to
use one listener in the page to react to value change (my row & column
encoded to context), but tapestry dynamically assigns suffix to id only
when it's rendered multiple times in Loop.
I need something like:
<tr ct:type="loop" source="report.items" value="item" index="index">
<td><span class="report" *t:id="editor"* size="3"
t:type="InPlaceEditor" value="item.zone" /></td>
..................
<td><span class="report" *t:id="editor"* size="3"
t:type="InPlaceEditor" value="item.self" /></td>
</tr>
any suggestions?