我正试图在我的Kendo UI模板中逃避百分比“%”,有人可以提供帮助。
$donePercentageInput.kendoSlider({
increaseButtonTitle: "Right",
decreaseButtonTitle: "Left",
min: 0,
max: 100,
smallStep: 1,
largeStep: 5,
tooltip: {
template: kendo.template("#= value \\\\% #")
}
});
尝试过//%
////%
\\%
\\\\%
什么都行不通...... :(
这是一个很容易解决的问题。这只是你把%
符号放在哪里的情况。
如果您将模板更改为:
tooltip: {
template: kendo.template("#= value #%")
}
那对你有用。
这是一个演示:
http://dojo.telerik.com/iGoLOc
拖动顶部滑块,您将看到工具提示。
通过将%
放在#= #
中,你要求keno计算出添加到它的奇数符号所提供的值,它不喜欢它。