Page 1 of 1

RowEdit listener 3.0 usage

Posted: 10 Aug 2011, 23:19
by hfcprime
What is the correct syntax to call the rowEdit listener in 3.0? I know about the "ajax as behavior" changes, and am okay on the DataTableFeatureCompatibilityMatrix . Here is the start of the table

<p:dataTable rows="20" var="llRow" value="#{ldapApprovalTable}" paginator="true">
<p:ajax event="rowEdit" listener="#{ldapApproval.editRow}">

and the listener signature


public void editRow(RowEditEvent evt) {
...
}

The table displays and the editor toggles correctly between states, but the listener is not called. I also tried event="editRow", no dice. Thanks.

Re: RowEdit listener 3.0 usage

Posted: 11 Aug 2011, 14:40
by Marx

Re: RowEdit listener 3.0 usage

Posted: 11 Aug 2011, 14:57
by hfcprime
I've seen that link, as I said. Question is, what is the correct spec for rowEdit events/listener in 3.0? Something like

<p:ajax event="rowEdit" listener="#{bean.editListener}"/>

where the listener has the signature in my post. Or not...

Re: RowEdit listener 3.0 usage

Posted: 12 Aug 2011, 01:33
by kukeltje
In another post i read something about it being called 'cellEdit'