JSF 1.1 and Ajax4jsf not working properly on Websphere 6.1

Posted by Shamik on Stack Overflow See other posts from Stack Overflow or by Shamik
Published on 2010-04-11T01:53:14Z Indexed on 2010/04/11 2:03 UTC
Read the original article Hit count: 761

Filed under:
|

I am working with JSF 1.1, Ajax4JSF. What I find is if I enable a4j:support for some of JSF's inputText items, it is not working as expected. I have something like this in the code

<h:inputText value="#{bean.desc}">
<a4j:support event="onkeyup" reRender="id"/>
</h:inputText>

And what I find is, sometimes it does not work, for example, I type TEST on the input text box and what transfers is only the "T" to the backing bean.

One more problem that I see is, when I submit the form, some of the values are not getting set in the backing bean. The setter methods are not called at all.

I do not think this is working properly in my env, is it this combination of JSF1.1,Ajax4JSF and websphere6.1 is not supported or is there anyway I can troubleshoot this ?

© Stack Overflow or respective owner

Related posts about jsf

Related posts about AJAX