You probably need a public List onAddRowFromOuterLoop(). Assuming each
element in your outer loop is a list which is used by the inner loop. Then
you'd need to store these multiple lists somewhere.
--
View this message in context:
http://tapestry-users.832.n2.nabble.com/ajaxformloop-inside-ajaxfo
I have a dateHolder that holds my objects in the ajaxformloop
public DateHolder onAddRowFromdateLoop(){
if (dateList == null){
dateList = new ArrayList();
}
DateHolder dateHolder = new DateHolder();
log.trace("add " + dateHolder.getKey());
Woah! A double loop! I've never tried one of those!
I know the ValueEncoder is really important to AjaxFormLoops - could
you post the one you're using along with the add and remove methods?
Steve.
On 12 September 2011 16:56, daoudja wrote:
> Hello,
> I want to make an ajaxformloop inside an aj