I'm using Wicket 1.2.
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.
The FormComponents' values are stored to cookies correctly, and using TCPMon
I see that the browser is returning even the ListView-encapsulated cookies
to the server during the GET.
Why might these components not get loaded? Should this work?
Thanks,
Nate