I want to get the row as object in My managed bean with its updated properties. I used the PrimeFaces showcase example DataTable – InCell Editing. I don’t understand how to get the edited values to update the database. How can I achieve this?
Share
Just add a save button to the same form. E.g.
with
Or, if you want to perform the save on every individual row edit event, then add a
<p:ajax event="rowEdit">to the<p:dataTable>. E.g.with