Hey,
I have this a field:
<h:inputText id="email" value="#{user.user.email}" title="Email" validator="#{user.user.validateEmail}"/>
The validateEmail method checks if the email address's length is greater than 0, if not, it throws an exception. I thought this would work, but sadly the method is called only if you enter a value. Why?
Thanks in advance!