Hello,
I'm currently trying to use KendoUI to implement a simple slider in a survey for a client.
Therefore, I wouldn't require the 500+kb of JS from the kendo.web.min.js and I would like to integrate the element with the minimum required dependencies.
Based on your documentation below, the slider widget only requires 4-5 script files to work :
http://docs.kendoui.com/getting-started/javascript-dependencies#slider-and-rangeslider
I'm trying to integrate the slider widget on a blank page using the specified script files, but the drag and drop functionality doesn't work.
I always get the following issue : "TypeError: v is not a constructor" in the file "kendo.draganddrop.min.js"
Here is the html portion :
I also attached a zip archive with the POC source.
Is there a missing dependency in your file list?
Thank you.
I'm currently trying to use KendoUI to implement a simple slider in a survey for a client.
Therefore, I wouldn't require the 500+kb of JS from the kendo.web.min.js and I would like to integrate the element with the minimum required dependencies.
Based on your documentation below, the slider widget only requires 4-5 script files to work :
http://docs.kendoui.com/getting-started/javascript-dependencies#slider-and-rangeslider
I'm trying to integrate the slider widget on a blank page using the specified script files, but the drag and drop functionality doesn't work.
I always get the following issue : "TypeError: v is not a constructor" in the file "kendo.draganddrop.min.js"
Here is the html portion :
<
input
id
=
"slider"
class
=
"balSlider"
value
=
"0"
/>
<
script
type
=
"text/javascript"
src
=
"js/jquery.min.js"
></
script
>
<
script
type
=
"text/javascript"
src
=
"js/kendo.core.min.js"
></
script
>
<
script
type
=
"text/javascript"
src
=
"js/kendo.binder.min.js"
></
script
>
<
script
type
=
"text/javascript"
src
=
"js/kendo.draganddrop.min.js"
></
script
>
<
script
type
=
"text/javascript"
src
=
"js/kendo.slider.min.js"
></
script
>
<
script
type
=
"text/javascript"
>
(function () {
//wait for DOM availability
$(document).ready(function () {
//create slider
$("#slider").kendoSlider();
});
})();
</
script
>
Is there a missing dependency in your file list?
Thank you.