[
https://issues.apache.org/jira/browse/CLK-610?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12801769#action_12801769
]
Andrey Rybin commented on CLK-610:
----------------------------------
Standard Java has similar feature:
http://java.sun.com/javase/7/docs/api/java/text/DateFormat.html
http://java.sun.com/docs/books/tutorial/i18n/format/dateFormat.html
but I can't find how to extract String pattern from DateFormat object,
but my research wasn't long!
Just don't forget: date format is a matrix:
one axis: language/country
other: format ;-) SHORT-to-FULL and date, time or date&time
> DateField formatPattern should not be static string, but static variable
> ------------------------------------------------------------------------
>
> Key: CLK-610
> URL: https://issues.apache.org/jira/browse/CLK-610
> Project: Click
> Issue Type: Improvement
> Reporter: Andrey Rybin
> Fix For: 2.1.0
>
>
> DateField constructors contain this code:
> super(...);
> ...
> setFormatPattern("dd MMM yyyy");
> (yes, same code 3 times ;-)
> I suggest to replace it with this:
> public static String defaultFormatPattern = "dd MMM yyyy";
> super(...);
> ...
> setFormatPattern(defaultFormatPattern);
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.