I am using the KendoUi Slider. I'm using the following setings:
jQuery(document).ready(function () {
jQuery("#slider").kendoSlider({
increaseButtonTitle: "Right",
decreaseButtonTitle: "Left",
showButtons: false,
min: 1,
max: 4,
smallStep: .2,
largeStep: 1,
value: <%= TotalScore %>,
tooltip:
{
enabled:false
}
});
I have four large steps and I want to label each of them "P" "O" "G" "I" in place of the numbers. How can I do this?
I am using the KendoUi Slider. I'm using the following setings:
jQuery(document).ready(function () {
jQuery("#slider").kendoSlider({
increaseButtonTitle: "Right",
decreaseButtonTitle: "Left",
showButtons: false,
min: 1,
max: 4,
smallStep: .2,
largeStep: 1,
value: <%= TotalScore %>,
tooltip:
{
enabled:false
}
});
I have four large steps and I want to label each of them "P" "O" "G" "I" in place of the numbers. How can I do this?
Share Improve this question edited Mar 28, 2012 at 19:22 Rodney Hickman asked Mar 26, 2012 at 20:49 Rodney HickmanRodney Hickman 3,14311 gold badges55 silver badges83 bronze badges1 Answer
Reset to default 16I couldn't find anything in the settings that would allow for this. So, I just built a quick slider item modifier instead:
http://jsfiddle/latenightcoder/QwGUy/1/