2 Replies Latest reply on Mar 4, 2007 4:28 AM by piotr.walczyszyn

    Problem updating model values with ajax4jsf

    piotr.walczyszyn

      I have a problem with updating model values using ajax4jsf. It looks like it does only validation phase but skips data model update phase. I'm trying to run simplest example of ajax4jsf:

      <s:decorate>
      <h:inputText value="#{mybean.textField}" styleClass="textfield">
       <a:support event="onkeyup" reRender="repeater" />
      </h:inputText>
      <h:outputText id="repeater" value="#{mybean.textField}" />
      </s:decorate>
      


      I get no error, I can see that there is asynch request done to the server but my bean doesn't get updated.