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>