[Wicket-user] Cached list object?

2006-07-07 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

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