Re: AJAX updating table row

2012-11-30 Thread Geoff Callender
In onDeactivate(Long serviceID), get the service! Tapestry is trying to render the row so it can send it back in the response - so it needs the service. Cheers, Geoff On 01/12/2012, at 4:01 AM, Pillar wrote: > Hey! Always more questions! > > I'm following this example: Ajax EventLinks in a L

Re: AJAX updating table row

2012-11-30 Thread Paul Stanton
each ajax request is still a new request and therefore properties in your page class are lost from the previous render. unless you mark them as @Persist. but in your case, your `service` property is set by the loop component. this is not going to be "emmulated" by the ajax request processing s