showButtonsBoolean(default: true)
Can be used to show (true) or hide (false) the increase and decrease buttons of a Slider.
Example
<input id="slider" style="width: 300px" />
<script>
$("#slider").kendoSlider({
showButtons: false,
min: 0,
max: 100,
value: 40
});
</script>
In this article