Changing the Due Date Input Format
When specifying dates and times, they should be based on the Java SimpleDateFormat.
When you are not in edit mode on the 'Look and Feel' page, the examples in the rightmost column of the Date/Time Formats section show you how the various formats will appear in JIRA.
Relative time is used in date/time formats
Issue date/time fields show a relative instead of absolute date/time format (for example: "Yesterday" instead of "20 May 2013 12:00 PM"). You can still see the absolute date/time by hovering over the field.The date/time format reverts to absolute after a week.
If you want to switch off this format, set the jira.lf.date.relativize
application property to 'false'. See Advanced JIRA Configuration for more information.
Configuring date picker formats
JIRA system administrators can configure the format of date pickers used throughout the JIRA user interface via options on the Advanced Settings page.
Be aware that these options are different from the Date/Time Formats configuration options on the Look and Feel page, which only customize JIRA's presentation of times and dates to users.
The date or date/time formats for date pickers are defined by a pair of properties (one for Java and the other for JavaScript). The two properties in this Java/JavaScript pair must match in order for the date (or date/time) picker they define to function correctly.
- For Java formats, specify date/time formats based on the Java SimpleDateFormat.
- For JavaScript formats, specify date/time formats based on the Unix date format.
Here are some example US-based date configurations:
Preferred Date | Value of the | Value of the | Comments |
---|---|---|---|
2010-10-01 | yyyy-MM-dd | %Y-%m-%d | ISO 8601 format |
Oct/1/10 |
|
| |
10/01/10 |
|
| |
Oct 1, 2010 |
|
| |
10/01/2010 |
|
|
Here are some examples of date/time configurations:
Preferred Date/Time | Value of the | Value of the | Comments |
---|---|---|---|
2010-10-15 08:50 | yyyy-MM-dd HH:mm | %Y-%m-%d %H:%M | ISO 8601 format |
15/Oct/10 8:50 AM |
|
| |
10/15/10 08:50 AM |
|
|