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,073
  • 146
  • 84
  • 117
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,111
  • 2
  • 12
  • 26