0
如何本地化/更改Kendo UI NumericTextbox控件中旋轉框的工具提示文本?Kendo UI - 如何本地化NumericTextbox控件中的旋轉框的工具提示?
如何本地化/更改Kendo UI NumericTextbox控件中旋轉框的工具提示文本?Kendo UI - 如何本地化NumericTextbox控件中的旋轉框的工具提示?
是的,我有同樣的問題。出於某種原因,「kendo.messages.xx-XX.js」本地化文件不會將旋轉按鈕上的兩條消息本地化,但我找到了一種方法:
if (kendo.ui.NumericTextBox) {
kendo.ui.NumericTextBox.prototype.options =
$.extend(true, kendo.ui.NumericTextBox.prototype.options,{
"upArrowText": "Increase value",
"downArrowText": "Decrease value"
});
}