I'm trying to edit rows on datatable using rowEdit mode but it doesn't work for me.
Here is the rowEdit event :
<p:ajax event="rowEdit"
listener="#{saisirHeuresForm.updateMyRow}"
update=":saisirHeuresForm:messages"/>
And the managedBean corresponding method :
public void updateMyRow(RowEditEvent event) {
event.getObject();
}
The event.getObject()
method returns the object corresponding to the row which is edited but without any property modification.
Has someone any idea about this problem ?
Thanks in advance for your help