coer-elements 0.0.70 → 0.0.72

Sign up to get free protection for your applications and to get access to all the features.
@@ -696,6 +696,11 @@ class DateTime {
696
696
  date = DateTime.GetFormatDB(date);
697
697
  return moment(date).parseZone().local(true).format('MMM, DD YYYY');
698
698
  }
699
+ /** MMM, DD YYYY */
700
+ static GetDateTimeFormat(date) {
701
+ date = DateTime.GetFormatDB(date);
702
+ return moment(date).parseZone().local(true).format('MMM, DD YYYY hh:mm a');
703
+ }
699
704
  /** */
700
705
  static IsValidDate(date) {
701
706
  if (Tools.IsOnlyWhiteSpace(date))