Hi Telerik,
I have a very simple example with a RadNumericTextBox control set to allow a maximum or 20 numeric characters with a MaxValue of 99999999999999999999. The issue is after entering 16 or more digits and then make the control lose focus causes the value to change. For example, 88888888888888888888 changes to 88888888888888880000. 99999999999999999999 changes to 10000000000000000000. Please help me make sense of what's going on. In my opinion, the value shouldn't change.
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="RadTextBoxTest.aspx.vb" Inherits="Pages_RadTextBoxTest" %>
<!DOCTYPE html>
<
html
xmlns
=
"http://www.w3.org/1999/xhtml"
>
<
head
runat
=
"server"
>
<
title
></
title
>
</
head
>
<
body
>
<
form
id
=
"form1"
runat
=
"server"
>
<
telerik:RadScriptManager
ID
=
"RadScriptManager1"
runat
=
"server"
></
telerik:RadScriptManager
>
<
div
>
<
telerik:RadNumericTextBox
runat
=
"server"
ID
=
"txtDigits"
Type
=
"Number"
MaxLength
=
"20"
MaxValue
=
"99999999999999999999"
Width
=
"150px"
>
<
NumberFormat
DecimalDigits
=
"0"
AllowRounding
=
"false"
GroupSeparator
=
""
NegativePattern
=
"n"
/>
</
telerik:RadNumericTextBox
>
</
div
>
</
form
>
</
body
>
</
html
>
Thanks,
Rob