Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
Adobe Flex SDK 3.4 (Release)
-
Affected OS(s): All OS Platforms
Affected OS(s): All OS Platforms
Language Found: English
Description
Steps to reproduce:
1. Compile and run the following application:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
styleName="plain">
<mx:Form>
<mx:FormItem label="Enter new date:">
<mx:DateField id="df" selectedDate="
" formatString="DD-MMMM-YYYY"/>
</mx:FormItem>
</mx:Form>
</mx:Application>
Actual Results:
<mx:DateField> field displays "08-0909-2009"
Expected Results:
<mx:DateField> field should display "08-September-09"
Workaround (if any):
Patch static method "dateToString" of DateField by ourselves.