Hello,
I'm using seam 1.2.1.GA, and ajax4jsf. Following the booking example, I have an ajax
actionListener attached to an input field as follows
| <s:decorate id="titleDecorate"
template="../templates/edit.xhtml">
| <ui:define name="label">Title
</ui:define>
| <h:inputText id="title"
value="#{fairManager.objectTitle}" required="true">
| <a:support event="onblur"
actionListener="#{fairManager.checkTitle}"
reRender="titleDecorate"/>
| </h:inputText>
| </s:decorate>
|
The "fairManager" here is a CONVERSATION scoped stateful session bean. When i
debug, i find that the "fairManager.checkTitle" method is never called. Is there
any reason why? I have a similar actionListener on a SESSION scoped SFSB, and it works
alright. I don't know why this one doesn't.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4033547#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...