I have the following rad numeric textbox.
> <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>
Inspite of setting maxlength and maxvalue to allow 20 numbers into the textbox, it allows only 16numbers . when i type 17th number, it automatically turns to zero. what should i do to allow this numeric textbox to allow 20numbers?