Re: Ajax and Loop

2008-05-08 Thread Stefan Lindner
Thank you! The ListView did the trick! -Ursprüngliche Nachricht- Von: Eelco Hillenius [mailto:[EMAIL PROTECTED] Gesendet: Donnerstag, 8. Mai 2008 00:35 An: users@wicket.apache.org; [EMAIL PROTECTED] Betreff: Re: Ajax and Loop Have you tried using a ListView in combination with a model

Re: Ajax and Loop

2008-05-07 Thread Jeremy Thomerson
Can you paste some code? Have you tried using a ListView in combination with a model (rather than passing a List to the constructor of ListView)? Jeremy Thomerson http://www.wickettraining.com On Wed, May 7, 2008 at 4:55 PM, Stefan Lindner [EMAIL PROTECTED] wrote: Dear wicket wizzards, I

Re: Ajax and Loop

2008-05-07 Thread Stefan Lindner
. Stefan -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Jeremy Thomerson Gesendet: Donnerstag, 8. Mai 2008 00:07 An: users@wicket.apache.org Betreff: Re: Ajax and Loop Can you paste some code? Have you tried using a ListView in combination

Re: Ajax and Loop

2008-05-07 Thread Eelco Hillenius
I have a Loop on my page (creates Components from a List ot Objects). Now I have an AjaxFallbackLink on my page. This link adds an Object to my List and as a reaction to this action I want my Loop to be repainted (showing the new object). What must I do? A simple

Re: Ajax and Loop

2008-05-07 Thread Jeremy Thomerson
@wicket.apache.org Betreff: Re: Ajax and Loop Can you paste some code? Have you tried using a ListView in combination with a model (rather than passing a List to the constructor of ListView)? Jeremy Thomerson http://www.wickettraining.com On Wed, May 7, 2008 at 4:55 PM, Stefan Lindner

Re: Ajax and Loop

2008-05-07 Thread Eelco Hillenius
Have you tried using a ListView in combination with a model (rather than passing a List to the constructor of ListView)? That won't trigger a re-population of the child components (ListItem and everything you add to it). For that, you need to call setReuseItems(false). Note that this can cause