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

jQuery sortable and kendo ui

1 Answer 113 Views
Integration with other JS libraries
This is a migrated thread and some comments may be shown as answers.
Rahul
Top achievements
Rank 1
Rahul asked on 12 Jan 2012, 03:19 PM
Hi,

I have added jquery ui sortable in one of the data elements in my kendo panel and after that all my other widgets embedded inside other 
bars of the panel have stopped working. 
http://98.130.153.40/botCreater.html 

the jquery is added inside publish section. The sortable works, but then all kendo widgets have stopped.

Can you let me know a work around please

1 Answer, 1 is accepted

Sort by
0
Stephen
Top achievements
Rank 2
answered on 08 Feb 2013, 08:30 PM
This is an old thread, but...

I had the same problem.  I think I remember how I fixed it:

As soon as I included the "full" jquery-ui.<version>.min.js, it broke Kendo.
So, I went to http://jqueryui.com/download and built a custom one by de-selecting everything and then just selecting the Sortable option from the Interactions section(this then forced Core, Widget, and Mouse from UI Core to be selected).
I then included this custom .js after the Kendo .js and it has been working so far.

<script src="@Url.Content("~/Scripts/kendo/2012.3.1114/jquery.min.js")"></script>
<script src="@Url.Content("~/Scripts/kendo/2012.3.1114/kendo.all.min.js")"></script>
<script src="@Url.Content("~/Scripts/kendo/2012.3.1114/kendo.aspnetmvc.min.js")"></script>
<script src="@Url.Content("~/Scripts/jquery-ui-1.9.2.custom.min.js")" type="text/javascript"></script>


Tags
Integration with other JS libraries
Asked by
Rahul
Top achievements
Rank 1
Answers by
Stephen
Top achievements
Rank 2
Share this question
or