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

RadNumericTextBox DecimalDigits

5 Answers 696 Views
Input
This is a migrated thread and some comments may be shown as answers.
John
Top achievements
Rank 1
John asked on 28 Mar 2008, 07:44 PM
I have a group of approx 20 radNumericTextBox on one screen.  I need them all to show three digits of precision.  So need them to show values like:

0.123
0.120
0.100
0.321
0.320
0.300

I have tried everything I can think of to get that display.  First setting the DecimalDigits to 3 and setting the radNumericTextBox value to the double value, no effect, if value in my double is 0.3 I get 0.3 displayed not 0.300

Next tried setting the radNumericTextBox text to 0.300 no luck it displays 0.3

Any Suggestions?

Thanks

5 Answers, 1 is accepted

Sort by
0
Giuseppe
Telerik team
answered on 31 Mar 2008, 07:08 AM
Hello John,

If you specify the DecimalDigits like this you should be able to observe the proper formatting when the control is in display mode (i.e. when it does not have focus):

<telerik:RadNumericTextBox ID="RadNum1" runat="server" Value="0.3"
    <NumberFormat DecimalDigits="3"></NumberFormat> 
</telerik:RadNumericTextBox> 


Could you confirm that this works on your end as well?


Regards,
Manuel
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
John
Top achievements
Rank 1
answered on 31 Mar 2008, 01:15 PM
Does not work.

Actually that was what I had first did not work.  I did change one of the boxes to reflect exaclly what you suggested and still did not work.  The box displays
0.3
I need it to show
0.300

Add info, these RadNumericTextBoxes are inside a PageView that are being displayed as part of a RadTabDtrip's multiview.

0
Accepted
Giuseppe
Telerik team
answered on 31 Mar 2008, 03:13 PM
Hello John,

We have attached a sample application that demonstrates what we are observing on our local tests.

Let us know if we are missing something out.


Greetings,
Manuel
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
John
Top achievements
Rank 1
answered on 31 Mar 2008, 03:24 PM
The example provided works perfect.

Not sure if I am happy or sad about that.  I do the same thing in my project and it does not work.  

Will see if I can figure it out.

Thanks
0
John
Top achievements
Rank 1
answered on 31 Mar 2008, 03:34 PM
After using the provided example I cut the Number Format section out and pasted.  I must have manually typed in the decimaldigits property and what I had was:

decimaldigits="3"
when I changed to
DecimalDigits="3"
everything worked.

using the caps made it all work.

Thanks for the Help.

John
Tags
Input
Asked by
John
Top achievements
Rank 1
Answers by
Giuseppe
Telerik team
John
Top achievements
Rank 1
Share this question
or