Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Adobe Flex SDK 3.3 (Release)
-
None
-
Affected OS(s): All OS Platforms
Affected OS(s): All OS Platforms
Browser: Firefox 3.x
Language Found: French
Description
Steps to reproduce:
1. work with locale = fr_FR, with compiled swc files for locale with "SharedResources.properties" having value
monthNames=Janvier,Février,Mars,Avril,Mai,Juin,Juillet,Août,Septembre,Octobre,Novembre,Décembre
2.import mx.formatters.DateFormatter;
private function tracer():void{
var _dateFormatter:DateFormatter = new DateFormatter();
for(var i:int=0; i<12; i++)
}
3. compile the above code
Actual Results:
the onChangeText provides null value for most of the months
Expected Results:
the onChangeText should provide date string properly.
Workaround (if any):
change "SharedResources.properties" to value with
monthNames=January,February,March,April,May,June,July,August,September,October,November,December
and recompile swc files
in case of using date field component, reassign monthNames as below:
<mx:DateField id="df" change="tracer()" selectedDate="
" monthNames="
{['Janvier','Février','Mars','Avril','Mai','Juin','Juillet','Août','Septembre','Octobre','Novembre','Décembre']}"/>