Re: Component (with a Zone and ActionLink) in a loop

2010-08-14 Thread Donny Nadolny
Thanks Thiago. For anyone else who has this problem, here's how I implemented it: In the component: @Inject private RenderSupport renderSupport; @Property private String zoneId; void setupRender() { zoneId = renderSupport.allocateClientId("myZone"); //Note: same as zone t:id, but doesn'

Re: Component (with a Zone and ActionLink) in a loop

2010-08-13 Thread Thiago H. de Paula Figueiredo
On Fri, 13 Aug 2010 22:08:40 -0300, Donny Nadolny wrote: I have a component that has a Zone and an ActionLink within the zone (which updates the zone that contains it). This works fine normally, but when I use it in a loop (actually a nested loop) and click the ActionLink, it only update

Component (with a Zone and ActionLink) in a loop

2010-08-13 Thread Donny Nadolny
I have a component that has a Zone and an ActionLink within the zone (which updates the zone that contains it). This works fine normally, but when I use it in a loop (actually a nested loop) and click the ActionLink, it only updates the first zone. I've read some previous messages (http://mai