如何在Kendo UI NumericTextbox控件中本地化/更改旋转框的工具提示文本?
答案 0 :(得分:0)
if (kendo.ui.NumericTextBox) {
kendo.ui.NumericTextBox.prototype.options =
$.extend(true, kendo.ui.NumericTextBox.prototype.options,{
"upArrowText": "Increase value",
"downArrowText": "Decrease value"
});
}
答案 1 :(得分:0)
要本地化文本,您必须在kendo包含之后简单地包含相应的消息脚本。 script
和link
取自Kendos documentation on localization:
例如:
$("#numeric").kendoNumericTextBox();

<link href="http://kendo.cdn.telerik.com/2018.1.221/styles/kendo.common.min.css" rel="stylesheet"/>
<script src="http://kendo.cdn.telerik.com/2018.1.221/js/jquery.min.js"></script>
<script src="http://kendo.cdn.telerik.com/2018.1.221/js/kendo.all.min.js"></script>
<!-- This is the important line, you may need to change de-DE to your desired locale -->
<script src="http://kendo.cdn.telerik.com/2018.1.221/js/messages/kendo.messages.de-DE.min.js"></script>
<p>Hover over the up or down caret to see the german texts:</p>
<input id="numeric" type="number" title="numeric" value="17" min="0" max="100" step="1" />
&#13;
您可能需要查看kendo-ui-core
repository或其文档中的可用本地化文件。
请注意,这是how the messages script does it(已在其他答案中显示):
/* NumericTextBox messages */
if (kendo.ui.NumericTextBox) {
kendo.ui.NumericTextBox.prototype.options =
$.extend(true, kendo.ui.NumericTextBox.prototype.options,{
"upArrowText": "Increase value",
"downArrowText": "Decrease value"
});
}
因此,如果您愿意,您应该能够自己定制这些文本。