slide
Fires when the user drags the drag handle to a new position.
Example
<div id="rangeslider" style="width: 200px;">
<input />
<input />
</div>
<script>
$("#rangeslider").kendoRangeSlider({
slide: function(e) {
console.log("Sliding - current positions:", e.value);
console.log("Start position:", e.value[0]);
console.log("End position:", e.value[1]);
},
min: 0,
max: 100,
selectionStart: 30,
selectionEnd: 70
});
</script>
Event Data
e.value Array
Represents an array of values of the current positions of the first and second drag handle.