Re: Problem with ListView embedded in another ListView

2009-04-23 Thread Thierry Leveque
Thank you very much!!! The AjaxSubmitLink ( with the DefaultFormProcessing set to false) solve my problem!! This is what happening when using to much copy-paste!! I was already using AjaxSubmitLink everywhere in my code Thierry Sent from Montreal, Quebec, Canada On Thu, Apr 23, 2009 at 13:28

Re: Problem with ListView embedded in another ListView

2009-04-23 Thread Igor Vaynberg
is the link repainting the entire listview? in that case all values will be lost because they are not submitted. either use ajaxsubmitlink, or only repaint the new row. there is an article on wicketinaction.com that shows how to do it. -igor On Thu, Apr 23, 2009 at 9:57 AM, Thierry Leveque wrote

Re: Problem with ListView embedded in another ListView

2009-04-23 Thread Thierry Leveque
No, it is an AjaxFallbackLink Both ListView use AjaxFallbackLink to Add or Remove item. Thierry Sent from Montreal, Quebec, Canada On Thu, Apr 23, 2009 at 12:44, Igor Vaynberg wrote: > is your "add" button submitting the form? > > is setreuseitems turned on on both listviews? > > > -igor > > On

Re: Problem with ListView embedded in another ListView

2009-04-23 Thread Igor Vaynberg
is your "add" button submitting the form? is setreuseitems turned on on both listviews? -igor On Thu, Apr 23, 2009 at 8:45 AM, Thierry Leveque wrote: > Hi > > I have a ListView that is embedded inside another ListView. Both ListView > are dynamic: Both have an Add and a Remove button. > The ie