I have a problem where I am using a grid component to display the contents of a list retrieved from a database: sometimes after modifying the list, the page loads without refreshing the data.
In my page: @Cached public List<MyEntity> getMyEntities() { return _myEntityDAO.findAll(); } For instance, if I delete an item from the list using a control on that page, and the page refreshes, the list will still show the item. If I click refresh it will reload with the updated list. This only happens occasionally, but it does happen more often than not. Has anybody else encountered/fixed this? Thanks, Peter Beshai