我正在使用 Telerik:radnumerictextbox 控件来提供十​​进制输入,
我需要像 10 这样的十进制输入,但 radnumerictextbox 默认显示值 10.00,如何设置属性以获取十进制值。

这是我在客户端使用的代码。

<telerik:radnumerictextbox
        ID="txtDirectTime"
        ShowSpinButtons="True"
        InterceptArrowKeys="True"
        Step="5" MinValue="0" runat="server">

提前致谢。

最佳答案

试试这个

<telerik:RadNumericTextBox runat="server"
                           ID="YourTextBox"
                           NumberFormat-DecimalDigits="2" />

有关 RadNumericTextBox 的更多信息,请访问 here

关于asp.net - 如何在 <telerik :radnumerictextbox> control? 中显示十进制值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12067848/

10-09 16:54