Is there a chance to have a form combining bean validation and Ajax, e.g.:
<h:form id="createForm">
<h:panelGrid id="createTable" columns="3">
<h:outputLabel id="lastnameLabel" for="lastname"
value="Lastname"/>
<h:inputText id="lastname"
value="#{bean.customer.lastname}">
<f:ajax event="..." .../>
</h:inputText>
<h:messages id="errorLastname" for="lastname"
errorClass="error"/>
<h:outputLabel id="firstnameLabel" for="firstname"
value="Firstname"/>
...
Any hint is appreciated!