This is more kind of theoretical question with pragmatic implications.
I have a page in which users can search for people. As a result of the search , there will be a list of people which meet the search criteria. Alongside every record(every person) There will be a link that takes the user to another page with more details about the person the user wants to know more about.
So far so good. My dilemma It is that in real world situations users might want to check several persons at the same time. I am not sure how to implementing without using JSF Request Beans. The situations is like this:
- User clicks (actually right-click "Open link in another tab" ) to see the details of a person 1
- Users clicks to see the details of another person 2.
- User do changes on person 1
- User do changes on person 2.
- User go back to person1-detail page and do changes again
Is it possible to implement the page with person Details supported in ViewScoped Beans ? If so, should the request that navigates from the search result page to the detail-person page be a post-request ? Any other workarounds ? Flash-Scoped ? COnversations ?