我正在尝试初始化一个剑道滑块,但我想加载而没有预先选择的值。
目前,我通过在开头(minValue - 1
)添加一个额外步骤来初始化滑块,因此拖动手柄从此位置开始(标签:' - ')。
有没有更好的主意,而无需在开头添加额外的值?
let thisSlider = $elem.kendoSlider({
increaseButtonTitle: 'Up',
decreaseButtonTitle: 'Down',
min: minValue - 1, // Add an extra step at the begining
max: maxValue,
smallStep: 1,
largeStep: 1,
value: null
});
// Change the label to '-'
thisSlider.siblings('.k-slider-items').find('.k-first').find('.k-label').html('-');