0

I want to change the text month/day/year in datepicker to something else, for example, MM/dd/yyyy, but I couldn't figure out how to do it.

Can you help?

Pang
  • 9,564
  • 146
  • 81
  • 122
sdao
  • 1
  • 1

1 Answers1

0

You do it by using the [format] attribute, like this:

<kendo-datepicker [format]="'dd-MMM-yyyy HH:mm:ss'" [value]="value">
</kendo-datepicker>

You can read about it in the documentation here.

Shai
  • 3,659
  • 2
  • 13
  • 26