betsol / angular-input-date

AngularJS directive to enable support for date input type
38 stars 19 forks source link

How to set date format of DD/MM/YYYY instead instead of MM/DD/YYYY in input? #2

Closed steve21124 closed 10 years ago

steve21124 commented 10 years ago

How to set date format of DD/MM/YYYY instead instead of MM/DD/YYYY in input tag?

slavafomin commented 10 years ago

The display format of date in input[type="date"] is controlled by the browser, probably based on users system locale setting.

Here's the answer on SO, that address this issue in details: http://stackoverflow.com/questions/7372038/is-there-any-way-to-change-input-type-date-format

If you have any further questions, I will be glad to help.

steve21124 commented 10 years ago

thanks