2016-06-21 3 views

답변

0

그래, 나도 같은 문제가 있었어. 어떤 이유로 "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" 
    }); 
}