Re: [Wicket-user] Cached list object?

2006-07-07 Thread Michael K
Bugger me, I 've came across with setReuseItem when I had a different issue with ListView but forgot all about it. Shouldn't spend too much on soccer channel :)Appreciate for your quick response, it works!Cheers,MichaelEelco Hillenius <[EMAIL PROTECTED]> wrote: If you did listView.setReuseItems(tru

Re: [Wicket-user] Cached list object?

2006-07-07 Thread Eelco Hillenius
If you did listView.setReuseItems(true), which is a good choice when you embed a ListView in a form, you should manually 'update' the list view by calling listView.removeAll, which will trigger the list view to get all the fresh results again and build the list items from scratch. If you use ListV

[Wicket-user] Cached list object?

2006-07-06 Thread Michael K
Hi,I'm not sure if this problem I'm dealing with have something to do with Wicket or Cayenne.A bit of a background, I'm using Wicket and Cayenne ORM to build a simple CRUD application.I want to be able to select and delete a record from the list (using ListView component) and then redirect back to