首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >设置值时KendoNumericTextbox不更新

设置值时KendoNumericTextbox不更新
EN

Stack Overflow用户
提问于 2016-08-24 04:57:00
回答 1查看 3K关注 0票数 1

我在更新kendoNumericTextBox时遇到了问题,当我更新val时,它不会显示,直到我把我的光标放到文本框中。

代码语言:javascript
复制
 $(document).ready(function () {
 
 $('#txtCorpEl').kendoNumericTextBox({}).data("kendoNumericTextBox");
 
 $('#txtCorpEl').value(5);
 
 $('#txtCorpEl').focus();
 
 //var numerictextbox = $("#txtCorpEl").data("kendoNumericTextBox");
//numerictextbox.focus();
 
 });
 
 
 function onChange() {
    console.log("event: change");
};
代码语言:javascript
复制
<link href="http://cdn.kendostatic.com/2011.3.1129/styles/kendo.common.min.css" rel="stylesheet"/>
<link href="http://cdn.kendostatic.com/2011.3.1129/styles/kendo.default.min.css" rel="stylesheet"/>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>        
<script src="http://cdn.kendostatic.com/2011.3.1129/js/kendo.all.min.js"></script>
 <input id="txtCorpEl" />

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2016-08-24 05:07:49

当我测试它时,它工作得很好。

代码语言:javascript
复制
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
  <link href="http://cdn.kendostatic.com/2011.3.1129/styles/kendo.common.min.css" rel="stylesheet"/>
<link href="http://cdn.kendostatic.com/2011.3.1129/styles/kendo.default.min.css" rel="stylesheet"/>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>        
<script src="http://cdn.kendostatic.com/2011.3.1129/js/kendo.all.min.js"></script>
</head>
<body>
 <input id="txtCorpEl" />
<script>
    $(document).ready(function () {
        $("#txtCorpEl").kendoNumericTextBox();
     var numerictextbox = $("#txtCorpEl").data("kendoNumericTextBox");
 numerictextbox.value(5); 
 });
</script>
</body>
</html>
票数 3
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/39110544

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档