Hi guys,
I am starting in Ajax4JSF now.
I have created a simple example (similar than the example in JBoss page) with a h:inputText and a h:outputText fields. When the value is changed in inputText, the value should appears on outputText.
Following the code:
<a4j:form>
<table>
<tr>
<td>Text</td>
<td>
<h:inputText id="text" value="#{example1.text}">
<a4j:support event="onkeyup" reRender="newText" />
</h:inputText>
</td>
</tr>
<tr>
<td>New Text</td>
<td>
<strong><h:outputText value="#{example1.text}" id="newText" /></strong>
</td>
</tr>
</table>
</a4j:form>
What is your version. Update to 3.1.0 GA please.