Is this Primefaces bug or Mojarra/MyFaces bug
I cannot seems to be able to fire an event when I am within column of dataTable . Here is my simple demostration <h:form id="form"> <!--This section of p:tree here seems to be the reason causing the event not fired when click the command button--> <p:tree value="#{viewBean.root}" var="node" dynamic="true" cache="false" selectionMode="checkbox" selection="#{treeBean.selectedNode}"> <p:ajax event="expand" update=":form:messages" listener="#{viewBean.onNodeExpand}" /> <p:ajax event="collapse" update=":form:messages" listener="#{viewBean.onNodeCollapse}" /> <p:ajax event="select" update=":form