I am using primefaces 3.0.0.M2 library. At this library, <p:selectOneMenu> element exists. My problem is that when I use <p:ajax> tag with listener, update and process attributes, the listener method does not get invoked, but update and process works fine. Here is my code:
<h:form prependId="false" id="frmNewRecord">
    <h:panelGrid columns="4" style="font-size: 10px;width:840px">
        Öğrenci No <p:inputText value={newRecord.azerKimKayit.ogrenciNo}" maxlength="11">
            <p:ajax event="blur" update="frmNewRecord" listener="#{newRecord.getStudent}" process="frmNewRecord" />
</h:form>
And my backing bean is (necassary method) :
public void getStudent() {
  azerKimKayit = azerKimKayitBo.findByOgrNo(azerKimKayit.getOgrenciNo());
}