Regardless of the formats that I try I keep getting the message "Sorry,
your input is not in the right format." What's the right format??
<tr>
<td><h:outputText value="Time"/></td>
<td>
<h:inputText id="time" value="#{generalBean.time}">
<f:convertDateTime type="time" pattern="hh:mm a" />
</h:inputText>
<h:message for="time" showDetail="true" showSummary="true" />
</td>
</tr>
James McGill - 18 Feb 2006 23:25 GMT
> Regardless of the formats that I try I keep getting the message "Sorry,
> your input is not in the right format." What's the right format??
In your example,
pattern="hh:mm a"
So what happens if you enter "04:20 PM" ?
KevinLEdwards@gmail.com - 19 Feb 2006 00:38 GMT
It displays the message "Sorry, your input is not in the right format."