How to change Mat-Datepicker date format to DD/MM/YYYY in simplest way?

后端 未结 9 1417
孤城傲影
孤城傲影 2021-02-07 09:00

I\'m setting up a mat-datepicker for DOB and traditionally the display format is MM/DD/YYYY,I need to change it to DD/MM/YYYY with less coding

I tried format tag in mat

9条回答
  •  不思量自难忘°
    2021-02-07 09:21

    Try this in the component you are using mat-datepicker

    import { DateAdapter } from '@angular/material';
    
    constructor(private dateAdapter: DateAdapter) {
        this.dateAdapter.setLocale('your locale'); 
    }
    

提交回复
热议问题