I'm working on an item list and maintenance combo page using jsf2. In this combo page, the left panel should show rows of item with edit button on each row. When edit button is clicked, the right panel will need to show a edit page of the selected item. This will need to be done with ajax request. I'm trying to put the right panel edit page into a include file. Because there is another place where user can access this edit page.
My question is below: This edit page has its own backend bean. This backend bean needs some info about the selected item in order to initailze and display the item correctly. How can I pass the selected item info to the backend bean of the edit page each time user clicked on the edit button? Please note that display of this edit page needs to be done as an ajax request.
thanks