I'm showing my validation messages on my jsf page:
<h:outputLabel value="Nome"/>
<h:inputText id="idNome" value="#{cadastrarClienteMB.cliT.nome}" required="true" requiredMessage="Digite o Nome para continuar!"/>
<h:message style="color:red; font-size:10px;" for="idNome"/>
Okay, it's working. This is great for me. The big problem is that the validation messages is showing at the top of the page.
How to not showing messages at the top?
Thanks.