Hi,
I have problem with f:convertDateTime, that it seems to use the error message *javax.faces.converter.DateTimeConverter.DATE_detail* when I convert time (i.e. it should use *javax.faces.converter.DateTimeConverter.TIME_detail*).
The issue, I'm guessing, is that I use a pattern, and thus it does not know if it's a date or a time that it is tying to convert. This is what I'm trying ("timePattern" is "hh.mm"):
<f:convertDateTime type="time" pattern="#{timePattern}" />
Even though type="time" is specified, it still uses the *DATE_detail* error message. Is this an bug or is my assumption that it should use the *TIME_detail* error message wrong, and I have to create my own converter?