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<ImportRequest> importRequests = new ArrayList<ImportRequest>();
@OnEvent(component = "searchForm", value = "submit")
public void doSearch() {
importRequests = importDAO.findImportRequests(importRequestSearch);
}
The results are only shown on my page when I use @Persist("flash") for
the importRequests.
Is it possible to do this without an @Persist("flash")?
Leon
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]