List of <p:ajax> events
ajax, jsf, jsf-2, primefaces
Solution
You can search for "Ajax Behavior Events" in PrimeFaces User's Guide, and you will find plenty of them for all supported components. That's also what PrimeFaces lead Optimus Prime suggest to do in this related question at the PrimeFaces forum `<p:ajax>` event list?
There is no `onblur` event, that's the HTML attribute name, but there is a `blur` event. It's just without the "on" prefix like as the HTML attribute name. You can also look at all "on*" attributes of the tag documentation of the component in question to see which are all available, e.g. `<p:inputText>`.
Problem
I've searched the Internet and I cannot find a list of `<p:ajax>` events. Can anyone provide a complete list of events for the `<p:ajax>` tag? I'm particularly interested if there is an `onblur` event or something similar.