Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The default implementation of rich:calendar renders the message "Value must be a date" when used like this and the user enters an invalid date, e.g. "13/13/2011".

<h:column>  
  <f:facet name="header">Opt-out Date</f:facet>
  <rich:calendar datePattern="MM/dd/yyyy" enableManualInput="true" value="#{dtl.withdDt}"  />
</h:column>

The tag is pulling this key from messages_en.properties by default javax.faces.converter.DateTimeConverter.DATE=Value must be a date

I want the message to be 'Opt-out Date must be a date.'

Failed Attempt #1:

   <h:column>   
      <f:facet name="header">Opt-out Date</f:facet>
      <rich:calendar validatorMessage="Opt-out Date must be a date." datePattern="MM/dd/yyyy" enableManualInput="true" value="#{dtl.withdDt}"  />
    </h:column>

Failed Attempt #2 Create properties file entry:

validate.dateEntry={0} must be a date.

Then reference it:

<rich:calendar validatorMessage="validate.dateEntry" label="Opt-Out Date" datePattern="MM/dd/yyyy" enableManualInput="true" value="#{dtl.withdDt}" />

Failed Attempt #3

<rich:calendar validatorMessage="#{statusMessages.addToControlFromResourceBundle('Opt in Date',validate.dateEntry)}" label="Opt Out Date" datePattern="MM/dd/yyyy" enableManualInput="true" value="#{dtl.withdDt}" />

There is a wrong assumption that I'm making or concept that I'm not grasping. Guidance greatly appreciated.

share|improve this question

1 Answer

up vote 2 down vote accepted

That's a conversion error, not a validation error. Use converterMessage, not validatorMessage.

share|improve this answer
Thank you. Is there a trick to passing in parameters? Something like: converterMessage="#{messages['validate.dateEntry'], 'Opt-in Date'}" – Brian Feb 11 '11 at 22:11
I'm using SEAM 2.2 – Brian Feb 11 '11 at 22:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.