标题几乎说明了这一点,我已经搜索了文档,发现的是:
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”,但没有成功
答案 0 :(得分:0)
我弄清楚如何设置宽度的唯一方法是在包装范围和输入上覆盖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>