I just noticed that the MVC 4 project in VS 2012 includes JQuery 1.7.1
If you include this version instead of the included /Scripts/kendo/2013.1.514/jquery.min.js then the date picker does not function properly if you page through the years.
remove reference to Scripts/kendo/2013.1.514/jquery.min.js
include reference to Scripts/jquery-1.7.1.min.js
add this to an MVC 4 site View
<div id="dataBind">
@(Html.Kendo().DatePicker().Name("dob").HtmlAttributes(new { data_bind="value: DateOfBirth"}))
</div>
<script>
var Model;
$(document).ready(function(){
Model = kendo.observable({
DateOfBirth: false
});
kendo.bind($("#dataBind"), Model);
});
</script>
Navigate to the page and select the DatePicker calendar
Select the Month Year section
The Months page does not show the months. Various navigation results in various effects to the Calendar DropDown view.
I guess my question is what is the version of JQuery supported by Kendo?
If you include this version instead of the included /Scripts/kendo/2013.1.514/jquery.min.js then the date picker does not function properly if you page through the years.
remove reference to Scripts/kendo/2013.1.514/jquery.min.js
include reference to Scripts/jquery-1.7.1.min.js
add this to an MVC 4 site View
<div id="dataBind">
@(Html.Kendo().DatePicker().Name("dob").HtmlAttributes(new { data_bind="value: DateOfBirth"}))
</div>
<script>
var Model;
$(document).ready(function(){
Model = kendo.observable({
DateOfBirth: false
});
kendo.bind($("#dataBind"), Model);
});
</script>
Navigate to the page and select the DatePicker calendar
Select the Month Year section
The Months page does not show the months. Various navigation results in various effects to the Calendar DropDown view.
I guess my question is what is the version of JQuery supported by Kendo?