This is a migrated thread and some comments may be shown as answers.

double zero show in numerictextbox in IE9

1 Answer 50 Views
Input
This is a migrated thread and some comments may be shown as answers.
Wenting
Top achievements
Rank 1
Wenting asked on 02 May 2012, 08:45 AM
Hi

I got a problem that when I set numerictextbox.value = 0.0, it shows double zero in IE9 as screenshots. However it shows properly in Chrome. My telerik version is 2012 Q1. Could anyone help me with it? thanks.

Here is part of my code:
<td>
    <telerik:RadNumericTextBox ID="TaxRateTextBox"  CssClass="number"  MinValue="0"  MaxValue="100" Type="Percent" AutoPostBack="true" ButtonsPosition="Right"  ShowSpinButtons="true"  runat="server" OnTextChanged="TaxRateTextBox_OnTextChanged"></telerik:RadNumericTextBox>
    </td>
     
    <td>
    <telerik:RadNumericTextBox ID="CurrencyTotalTextBox" CssClass="number" Type="Number"  runat="server" Enabled="false" NumberFormat-DecimalDigits="2"></telerik:RadNumericTextBox>
    </td>
    
    <td>
    <telerik:RadNumericTextBox ID="NoTaxTotalTextBox"  CssClass="number" runat="server" Enabled="false" NumberFormat-Groupsizes="3"></telerik:RadNumericTextBox>
    </td>

                TaxRateTextBox.Value = double.Parse(q.q_taxpct.ToString());
                TaxTextBox.Value = double.Parse(q.q_taxamt.ToString());
                CurrencyTotalTextBox.Value = double.Parse(q.q_foretot.ToString());
                NoTaxTotalTextBox.Value = double.Parse(q.q_totamt.ToString());
                TaxedTotalTextBox.Value = double.Parse(q.q_totaxamt.ToString());
...

1 Answer, 1 is accepted

Sort by
0
Accepted
Vasil
Telerik team
answered on 07 May 2012, 07:20 AM
Hello Wenting,

It was known problem in Q1 2012, and it is already fixed in the Service Pack for Q1. Please upgrade and let us know if you have any problems.

Regards,
Vasil
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Input
Asked by
Wenting
Top achievements
Rank 1
Answers by
Vasil
Telerik team
Share this question
or