Tapestry puts some random chars at the end of the id when there's an in place update. This is to stop id clashes as far as I understand.
On Tue, Mar 11, 2014 at 1:09 PM, Swapna <[email protected]> wrote: > I have an eventLink inside the table, the event link id gets changed once > the table zone is refreshed. once zone refreshed, event handler doesn't get > called. > For what I have seen, is the event link id getting changed. > > Any help is appreciated. > > <t:zone t:id="tableZone" id="tableZone"> > <t:jquery.datatable ........ > rowIndex = "currentIndex" > --------------------- > <p:btnCell> > <t:eventLink t:event="balExpand" t:zone="balZone" > t:context="${currentIndex}" ></t:eventLink> > </p:btnCell> > </t:jquery.datatable> > </t:zone> > > <t:zone t:id = "balZone" id="balZone"> > ...... > </t:zone> > > > public Object onBalExpand(String currentIndex) { > return balZone; > } > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
