Hi !
I am trying to validate a rich:calendar for not null input using <rich:beanValidator />
, but i am not able to validate for null inputs.
For example in my constraits.xml file, i validate getter for calendar:
<getter name="dateOfBirth">
<constraint annotation="javax.validation.constraints.Past"/> (works fine)
<constraint annotation="javax.validation.constraints.NotNull" /> (not work)
<constraint annotation="org.hibernate.validator.constraints.NotEmpty"/> (not work)
</getter>
Those last two constraint did not worked because "DateTime" data type dose not recognize them ? (first of them as far as i know is used for numeric values and second one for strings).
There is such a constraint for date time data type ? Could i validate somehow using constraints written in xml file for not null inputs ?
I am forced to used required="true" in xhtml for this kind of validation (not null) for rich:calendar (if i am using hibernate validator) ?
Please if you have an idea help me...
Regards, Mircea