下面是修改劍道的UI滑塊取決於值的工具提示的解決方案:自定義工具提示劍道UI滑塊
var text = [];
text.push("Text 1");
text.push("Text 2");
text.push("Text 3");
text.push("Text 4");
$("#slider").kendoSlider({
min: 0,
max: 3,
smallStep: 1,
largeStep: 1,
value: 0,
tooltip: {
enabled: true,
format: text[0], // min-value text
},
slide: function (e) {
e.sender.options.tooltip.format = text[e.value];
}
});
它不能將提示配置爲與工具提示窗口小部件貝蒂。
這是一個有趣的問題,或者你在說什麼? – Vojtiik
只是說。找不到解決方案,我提供了一個解決方案。 – falko
感謝您提供我一直在尋找的解決方案。誰在乎,如果答案在你的問題。這正是我所期待的。那謝謝啦。我提出了你的問題。 –