我有以下 rad 数字文本框。
> <telerik:RadNumericTextBox ID="numTxtIMEI" runat="server"
> MaxLength="20" MinValue="0" Visible="false"
> maxvalue="99999999999999999999" AutoCompleteType="Disabled">
> <NumberFormat GroupSeparator="" DecimalDigits="0" /> <ClientEvents
> OnKeyPress="preventDecimalSeparator" /> </telerik:RadNumericTextBox>
尽管设置 maxlength 和 maxvalue 以允许 20 个数字进入文本框,但它只允许 16numbers 。当我输入第 17 个数字时,它会自动变为零。我应该怎么做才能让这个数字文本框允许 20 个数字?