Date format gotcha
Here is a gotcha to watch out for. I just noticed this while I was looking into a bug about why dates in the grid were offset from the dates in the database.
In the java and ColdFusion date formatters you use the letter H to represent the hour in 0-23 hour format. However in the flex date formatter (which we use for flash forms) H represents the hour in 1-24 format not the 0-23 format that I was used to. In flash you need to use the letter J for the 0-23 format in a date mask.
So if you run into the problem where your dates are displayed 1 hour off, remember to use J instead of H in the mask attribute.
Here are all the flex dateFormatter mask characters.
Valid pattern letters include:
Y - Year.
M - Month.
D - Day in month.
E - Day in week.
A - AM/PM indicator.
J - Hour in day (0 to 23).
H - Hour in day (1 to 24).
K - Hour in AM/PM (0-11).
L - Hour in AM/PM (1-12).
N - Minute in hour.
S - Second in minute.


Thanks for your Help
01/00/N 12:00 AM
I'm using this format below:
MM/DD/YY L:NN A