I repeatedly fail to find a matrix that maps different JSF/PrimeFaces tags to supported <p:ajax>
events. It is very frustrating because it limits my grasp on how to use ajax.
One particular example is within an <h:form>
tag when I want the view to notify the controller whenever the user sets the focus on anywhere in the form:
<h:form>
<p:ajax event="onClick" listener="#{myController.clickListener}"/>
But I get
<p:ajax> Event:onClick is not supported.
How do I find a list of all the supported p:ajax events for a tag (in this case h:form but any other really) when it is nested inside that tag? I am aware of the existence of this related thread but it does not offer a solution anywhere (I tried going to the PF documentation PDF but did not find it).