DateConverter.as 425 B

12345678910111213141516171819
  1. package com.imt.intimamedia.helpers
  2. {
  3. import mx.formatters.DateFormatter;
  4. public class DateConverter
  5. {
  6. public function DateConverter()
  7. {
  8. }
  9. public static function convertDateToString( value : Date ) : String
  10. {
  11. var dateFormatter : DateFormatter = new DateFormatter();
  12. dateFormatter.formatString = "DD-MM-YYYY";
  13. return dateFormatter.format( value );
  14. }
  15. }
  16. }