Hi,
I try to create a DateTimePickerFor to pick my StartDate in an MVC Application.
When I load the page I can just see a textbox. The DropDownListFor worked fine.
In IE developer tools it says:
Object does not support the property or method "kendo datetimepicker"
But I did not even create the object, it is created by the WidgetFactory.
Can you tell me what I missed?
I try to create a DateTimePickerFor to pick my StartDate in an MVC Application.
@(Html.Kendo().DateTimePickerFor(model => model.StartTime)
.Format(
"dd.MM.yyyy HH:mm"
)
.Name(
"DateTimePickerStartTime"
)
.Value(DateTime.Now)
)
When I load the page I can just see a textbox. The DropDownListFor worked fine.
In IE developer tools it says:
Object does not support the property or method "kendo datetimepicker"
But I did not even create the object, it is created by the WidgetFactory.
Can you tell me what I missed?