New to Kendo UI for jQueryStart a free 30-day trial

SetOptions

methods

Changes the initial Slider configuration.

Parameters:optionsObject

The new configuration options. It can be used for changing "min", "max", "smallStep" and "largeStep" options of the Slider.

<input id="slider" />
<script>
$("#slider").kendoSlider({
    min: -10,
    max: 20,
    smallStep: 2,
});

var slider = $("#slider").data("kendoSlider");

slider.setOptions({
    min: -5,
    max: 5,
    smallStep: 1,
    largeStep: 2
});
</script>
Not finding the help you need?
Contact Support