Hi All,
I want to be able to use 4 deciaml points but on the textbox and i want to hide the extra zeros if the user does not enter a number with 4 decimal points.
example, if he enters a number like 12.25 it currently displays as 12.2500, can we should not show the extra zeros?
But if the user requires the full 4 decimal points like he enters 12.1234 we can show this as 12.1234.
Thanks,
Sankar
Gohil JayendrasinhPosted Mar 7, 2012, 5:06 AM
Add namespace
VulpesPosted Mar 7, 2012, 9:40 AM
The "0.0000" format will pad out the number with zeros if there are less than 4 digits after the decimal point. So 12.25 will become 12.2500.
VulpesPosted Mar 7, 2012, 4:51 AM