This code works for making a slider
I try to do the same thing but for a range slider:
It doesn't works event with trivial way
Do you have idea how to do that?
<script>
$(document).ready(function () {
var sliderTimePush = jQuery("#sliderTimePush").kendoSlider({ increaseButtonTitle: "Right", decreaseButtonTitle: "Left", showButtons: true, min: 1, max: 7, largeStep: 1, tooltip: { enabled: false }, orientation: "horizontal" });
});
</script>
<input id="sliderTimePush" class="balSlider" value="0" />
<script> $(document).ready(function () {var sliderTimePush = jQuery("#sliderTimePush").kendoRangeSlider({ increaseButtonTitle: "Right", decreaseButtonTitle: "Left", showButtons: true, min: 1, max: 7, largeStep: 1, tooltip: { enabled: false }, orientation: "horizontal" }); });</script> <input id="sliderTimePush" class="balSlider" value="0" />It doesn't works event with trivial way
var sliderTimePush = jQuery("#sliderTimePush").kendoRangeSlider()({ min: 0, max: 10, smallStep: 1, largeStep: 2, tickPlacement: "both"});Do you have idea how to do that?