Can't reRender h:inputText value using a4j
Hi
I think I've already asked, but still no idea how to update input text component using h:selectOneMenu Can anyone help? Simply, reRender doesn't work on this component. The code:
<h:selectOneMenu value="#{myBean.selected}">
<f:selectItems value="#{myBean.myList}"/>
<a4j:support event="onchange" action="#{myBean.changeOption}"
ajaxSingle="true" reRender="myInput" />
</h:selectOneMenu>
<h:inputText id="myInput" value="#{myBean.myValue}"/>
It works with outputText, but not with inputText. I use a4j 1.1.1 and facelets 1.1
Thanks in advance.