A work item due date consists of three parts: date, time and AM/PM. There are three keys to represent the Due Date.
local_tm_dueDate
local_tm_dueTime
local_tm_dueAmPm
The key for the date is local_tm_dueDate. It follows the format configured in config.properties file as the property taskmanager.input.date.format, and its default format is MM/dd/yyyy (e.g. 01/01/2004).
The key for the time is local_tm_dueTime. It follows the format hh:mm, where hh is hours in am/pm (01~12) and mm is minutes in hour. If the time of the due date is rendered in a 3rd party viewer as a dropdown list, the default possible values should use the following values:
01:00 02:00 03:00 04:00 05:00 06:00 07:00
08:00 09:00 10:00 11:00 11:59 12:00
These values are set in <EPX>\bin\config.properties as the property taskmanager.input.time.list. The key for the AM/PM is local_tm_dueAmPm. The possible values are AM or PM.