I have a Seam/JSF application that has a date field.
When the user types in 01.01.11, it interprets it to 01.01.0011 which is obviously incorrect. The correct value should have been 01.01.2011
Anyone encountered this? How did you solve it? The xhtml is the following:
<h:inputText value="#{budgetHandler.grantedFrom}">
<s:convertDateTime type="date" pattern="dd.MM.yyyy"/>
</h:inputText>
0099– Shervin Jun 24 '11 at 13:32