Re: A problem with ListView in a StatelessForm

2010-01-14 Thread kirillkh
Thanks, I'll be checking that out. On Thu, Jan 14, 2010 at 2:52 AM, Cemal Bayramoglu jweekend_for...@cabouge.com wrote: Kirill, You may get some useful ideas at http://wicketinaction.com/tag/listeditor/ . Regards - Cemal jWeekend OO Java Technologies, Wicket Consulting, Development,

Re: A problem with ListView in a StatelessForm

2010-01-13 Thread Cemal Bayramoglu
Kirill, You may get some useful ideas at http://wicketinaction.com/tag/listeditor/ . Regards - Cemal jWeekend OO Java Technologies, Wicket Consulting, Development, Training http://jWeekend.com 2010/1/13 kirillkh kiril...@gmail.com: Hi Per, I've seen this mentioned in the javadocs, but it

A problem with ListView in a StatelessForm

2010-01-12 Thread kirillkh
Hi (again), Another problem that I've encountered: ListView doesn't seem to play nicely with StatelessForm. A stateless form is supposed to work and accept input no matter if the page exists or not. Now the problem that I'm facing is when a user logs into the system, views certain page with

Re: A problem with ListView in a StatelessForm

2010-01-12 Thread Per Newgro
Without going deeper to your problem. A common mistake is that people forgot to call setReuseItems on the listview. This is required with repeaters in form. See javadoc for details. Cheers Per - To unsubscribe, e-mail:

Re: A problem with ListView in a StatelessForm

2010-01-12 Thread kirillkh
Hi Per, I've seen this mentioned in the javadocs, but it can't possibly help, as the ListView.reuseItems variable is only used inside ListView.onPopulate(), which, as I pointed out, is called too late. Indeed, setting reuseItems on doesn't help. Thanks, -Kirill On Wed, Jan 13, 2010 at 8:49 AM,