<html>
  <head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Hi All!<br>
    <br>
    Thanks for release 3.3 looks great. As I mentioned it before
    concerning the 3.2 release I still need to change the years
    representation from 2 digits to 4. <br>
    As I never used Wicket before the only solution I found is to patch
    the code directly by adding the method below to "DateInput.java".<br>
    <br>
        @Override<br>
        protected DateTextField newDateTextField(String id,
    PropertyModel<Date> dateFieldModel) {<br>
            return DateTextField.forDatePattern(id, dateFieldModel,
    "dd.MM.yyyy");<br>
        }<br>
    <br>
    <br>
    While this is sufficient for our requirements I wonder how we can
    make this feature configurable and generally available as I want to
    avoid manual code patches for every release?<br>
    <br>
    <br>
    Thanks in advance<br>
    <br>
    Jens<br>
    <br>
    <br>
    <br>
    <br>
    <meta http-equiv="content-type" content="text/html; charset=utf-8">
  </body>
</html>