KendoUI Mobile: Input type date, wrong format/culture

707 Views Asked by At

I have a problem with a date-input in my KendoUI Mobile application. The input displays the value in the default format (MM/dd/yyyy) but I want the input to display the value in a differnet format like dd.MM.yyyy.

Is there a possibility to change the format?

The online demo also shows my default culture date format so I think it is not impossible. http://demos.kendoui.com/mobile/forms/index.html

Update: The content is shown inside a Icenium generated APP and not in a default browser.

1

There are 1 best solutions below

0
Radu Turtoi On

You can format it using kendo.toString(new Date(), "dd/MM/yyyy").

find more info here