标题几乎说明了这一点,我搜索了文档,我所能找到的就是:
https://docs.telerik.com/aspnet-core/tag-helpers/editors/numerictextbox/overview
这根本没有解决这个问题。
下面是我当前的代码行:
<kendo-numerictextbox name="currency" id="txtCheckNumber" format="#" min="0" enable="true" max="9999999999" spinners="false" value="10001" > </kendo-numerictextbox>我试过明显的width="100px“和width="100”,但没有成功
发布于 2019-04-30 03:32:38
我知道如何设置宽度的唯一方法是覆盖包装器跨度和输入上的Kendo样式。
<style type="text/css">
.k-widget.k-numerictextbox {
width: 100px !important;
}
.k-numeric-wrap.k-state-default {
width: 100px !important;
}
.k-numeric-wrap input {
width: 100px !important;
}
</style>https://stackoverflow.com/questions/53981010
复制相似问题