user2720297
user2720297

Reputation: 141

Kendo grid and Jquery is not working on Viiew

I need a progress bar(Jquery ui ) in my view page .The page also contains a kendo Grid..

So I added these files (jquery-ui.css,jquery-.js,jquery-ui.js) but adding jquery.js Showing error Object Object has no method kendo grid

Using Updated version of Jquery.

Upvotes: 0

Views: 234

Answers (1)

Atanas Korchev
Atanas Korchev

Reputation: 30661

You have probably included jQuery twice. The second instance will wipe out any jQuery plugins (e.g. Kendo) which were previously registered. You should include only one instance of jQuery in your page.

Upvotes: 1

Related Questions