Example Date Formatter : DateFormatter « Data Model « Flex
- Flex
- Data Model
- DateFormatter
Example Date Formatter

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
<mx:Script>
[Bindable]
private var todaysDate:Date = new Date();
</mx:Script>
<mx:DateFormatter id="DateF" formatString="MMMM D, YYYY"/>
<mx:TextArea id="myTA" text="{DateF.format(todaysDate)}"/>
</mx:Application>
Related examples in the same category