This is a migrated thread and some comments may be shown as answers.

Min / Max Version of JQuery?

1 Answer 76 Views
Date/Time Pickers
This is a migrated thread and some comments may be shown as answers.
Rich Lasker
Top achievements
Rank 1
Rich Lasker asked on 21 May 2013, 05:22 PM
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? 

1 Answer, 1 is accepted

Sort by
0
Alex Gyoshev
Telerik team
answered on 22 May 2013, 06:29 AM
Hello Rich,

The relationship between jQuery and Kendo UI is explained in the JavaScript dependencies help topic.

All the best,
Alex Gyoshev
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
Date/Time Pickers
Asked by
Rich Lasker
Top achievements
Rank 1
Answers by
Alex Gyoshev
Telerik team
Share this question
or