i dont think cookie persistence is going to work for listviews out of the box. the problem is that components inside repeaters do not have stable component paths - and that is the key the cookie uses to store values. so you will need to roll your own solution for this usecase.
-igor On Tue, Jun 10, 2008 at 12:00 PM, nate roe <[EMAIL PROTECTED]> wrote: > Yes, I have. > > On Tue, Jun 10, 2008 at 11:48 AM, Timo Rantalaiho <[EMAIL PROTECTED]> > wrote: > >> On Tue, 10 Jun 2008, nate roe wrote: >> > I have a form with several components. Some components are within a >> > ListView. Cookie value persistence does not appear to be loading values >> for >> > components in the ListView. I have a breakpoint in >> > Form.loadPersistentFormComponentValues(...) at line 261: >> > >> > if (formComponent.isVisibleInHierarchy() && >> > formComponent.isPersistent()) >> > >> > This line is never executed for FormComponents within my ListView. >> >> Have you set ListView.setReuseItems(true) ? >> >> >> http://cwiki.apache.org/WICKET/listview-and-other-repeaters.html#ListViewandotherrepeaters-Usingformcomponentsinarepeater >> >> Best wishes, >> Timo >> >> -- >> Timo Rantalaiho >> Reaktor Innovations Oy <URL: http://www.ri.fi/ > >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: [EMAIL PROTECTED] >> For additional commands, e-mail: [EMAIL PROTECTED] >> >> > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
