Commandlink or commandbutton don't work in datatable
in my JSP :
<t:datatable id="entityTable" value="#{groupManagerBean.group.entities}" ...>
<h:column>
<f:facet name="header">...</f:facet>
<h:commandlink action="#{groupManagerBean.editAction}" value="test"/>
</h:column>
</t:datatable>
I never enter in my action (editAction).
"#{groupManagerBean.group.entities}" return the entities for a group and that's work fine, but the commandlink (or commandbutton) in my datatable doesn't work. If i replace the action "#{groupManagerBean.editAction}" by "success" (a navigation forward in my face-config), that doesn't work anymore.
Last thing,in my datatable, if i replace the value "#{groupManagerBean.group.entities}" by"#{groupManagerBean.groups}" ( get the list of all groups) , the commandlink works.
Any suggestion ?

