Re: @Persist("flash") question

2008-05-09 Thread Thiago HP
Try this: @Persist("flash") private String importRequestSearch; public List getImportRequests() { return importDAO.findImportRequests(importRequestSearch); } This way, you store less information in the session (just the search criteria, not the search result). And you mus

RE: @Persist("flash") question

2008-05-08 Thread Kristian Marinkovic
AIL PROTECTED]> 08.05.2008 14:54 Bitte antworten an "Tapestry users" An Tapestry users Kopie Thema @Persist("flash") question In my page I have a the following function that is executed when I click on the search button in my page. @Persist("flash") private Lis

@Persist("flash") question

2008-05-08 Thread Leon Derks
In my page I have a the following function that is executed when I click on the search button in my page. @Persist("flash") private List importRequests = new ArrayList(); @OnEvent(component = "searchForm", value = "submit") public void doSearch() { importRequests = importDAO.findImpor