Re: [T5.2] Update Zone inside AjaxFormLoop

2011-02-08 Thread Yohan Yudanara
Yes, It does.. Thank you very much.. Now, I can control id of zone elements inside AjaxFormLoop. On Tue, Feb 8, 2011 at 12:31 AM, Mark wrote: > You can set the client side id to something like: > > id=${rowZoneId} > > public String getRowZoneId() { > return "rowZone-" rowId; > } > > That way i

Re: [T5.2] Update Zone inside AjaxFormLoop

2011-02-07 Thread Mark
You can set the client side id to something like: id=${rowZoneId} public String getRowZoneId() { return "rowZone-" rowId; } That way if you need to update a particular zone you can reference it. As long as you set rowId to be the same value when you add it to the MultiZoneUpdate as it was whe

Re: [T5.2] Update Zone inside AjaxFormLoop

2011-02-07 Thread Yohan Yudanara
Hi, I've tried MultiZoneUpdate and it's working. So, I want to change my question: We can add/delete rows in AjaxFormLoop, so the zone ids is dynamic. How to get available zone ids inside AjaxFormLoop ? Do we need to loop it using Javascript and pass it to server side via context, or is there any