Hello,
I'm trying to cut down on my JS files and use only the Kendo elements I need, but I'm running into some errors.
This works fine:
However this does not:
When running my code with the second code block, I get the error: Uncaught TypeError: Cannot read property 'jQuery' of undefined, which is caused by the variable 'window.kendo.jquery' not being set.
Is there something else that I need to include with the individual components to get them to work? I can use kendo.web.min.js as a workaround for the time being, but I'd like to only use the components individually if possible.
Thanks!
Ryan
I'm trying to cut down on my JS files and use only the Kendo elements I need, but I'm running into some errors.
This works fine:
<
script
src
=
"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"
></
script
>
<
script
src
=
"JS/kendo/kendo.all.min.js"
></
script
>
<
script
src
=
"//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"
></
script
>
<
script
src
=
"JS/Kendo/kendo.combobox.min.js"
></
script
>
Is there something else that I need to include with the individual components to get them to work? I can use kendo.web.min.js as a workaround for the time being, but I'd like to only use the components individually if possible.
Thanks!
Ryan