2 Replies Latest reply on Aug 21, 2008 11:45 PM by kash_meu

    Problem with a4j:support

      This is my code. I have an outputPanel with id 'out'.

      <a4j:region id="myA4JRegion">
       <h:inputText id="numberOfPhones"
       value="#{userBean.numberOfPhones}">
       <a4j:support event="onkeyup" reRender="out" actionListener="#{userBean.updateNumbersOfPhones}"/>
       </h:inputText>
       </a4j:region>


      When I type in the inputText, the event does not call either thr setter of numberOfPhones or the function updaetNumbersOfPhones. What should I do?