web-dev-qa-db-fra.com

Angular Material 5 - Comment personnaliser la date dans mat-datepicker

Comment personnaliser la date mat-datepicker au format MM/DD/YYYY?

J'utilise la configuration suivante:

HTML:

<mat-form-field>
  <input matInput [matDatepicker]="picker" placeholder="Choose a date">
  <mat-datepicker-toggle matSuffix [for]="picker"></mat-datepicker-toggle>
  <mat-datepicker #picker></mat-datepicker>
</mat-form-field>

TS:

import {Component} from '@angular/core';

/** @title Basic datepicker */
@Component({
  selector: 'datepicker-overview-example',
  templateUrl: 'datepicker-overview-example.html',
  styleUrls: ['datepicker-overview-example.css'],
})
export class DatepickerOverviewExample {}

Lorsque j'imprime la valeur du formulaire, cela me donne la sortie suivante:

Dim 31 déc 2017 00:00:00 GMT + 0530 (IST)

J'attends le format en MM/DD/YYYY.

J'ai essayé cette configuration: https://material.angular.io/components/datepicker/overview#customizing-the-parse-and-display-formats

Mais ça n'a pas marché pour moi. J'utilise MatNativeDateModule par défaut (pas moment js)

7
Sahil Purav

Vous pouvez utiliser le canal de date comme suit,

<input mdInput placeholder="Title" [ngModel]="mydate  | date:'MM-dd-yyyy'">

DEMO

8
Sajeetharan

Le code ci-dessous formatera la date de tous les sélecteurs de date dans votre application angular.

Créez une constante pour le format de date.

export const DateFormat = {
 parse: {
 dateInput: 'input',
 },
display: {
dateInput: 'MM/DD/YYYY',
monthYearLabel: 'MMMM YYYY',
dateA11yLabel: 'MM/DD/YYYY',
monthYearA11yLabel: 'MMMM YYYY',
}
};

Et utilisez le code ci-dessous dans le module d'application

providers: [
  { provide: DateAdapter, useClass: MomentDateAdapter, deps: [MAT_DATE_LOCALE] },
  { provide: MAT_DATE_FORMATS, useValue: DateFormat }
 ]
6
Mohan Singh