Hi all,
after days spent Googling and forums-browsing

I decided to post my question on one of the best
Java forums on the web.
I have created JPA-JSF CRUD application using Netbeans, with addition of Richfaces. Everything works great, except I would like to enhance it a bit.
One of the entities - E1 contains among other members a collection - made of another entity - E2.
It is represented on Detail screen of E1 as a table made of rows, each being different E2. User is able to view, edit or delete each row separately by clicking coresponding link next to that row.
I would like to make the whole E2 collection data table editable, so user wouldn't have to go to a different screen everytime in order to edit E2 values.
How can I reference each E2 row separately in E1 controller class and how can I have one unified Save button that would save entered values for the multi-row E2 table on the E1 Detail screen?
Thanks in advance.
