Hi there,
I got some issue with the kendo datepicker component, he generate wrong date format, my culture is set to "fr-FR", if i use then Kendo Html Helper to generate the component i got a wrong date format, exemple :
But if i manually instanciate the compenent with javascript like this :
it's correctly display the date, i only have this issue in one area of my MVC app,
I got some issue with the kendo datepicker component, he generate wrong date format, my culture is set to "fr-FR", if i use then Kendo Html Helper to generate the component i got a wrong date format, exemple :
@(Html.Kendo().DatePicker().Name(
"Test"
).Value(
DateTime.Now))
<
input
name
=
"Test"
id
=
"Test"
value
=
"@DateTime.Now"
/>
<
script
type
=
"text/javascript"
>
$(document).ready(function () {
$('#DebutJ').kendoDatePicker();
});
</
script
>