I have two text boxes that take dollar and cents information. I have written a javascript method that takes the numerical input and formats the decimal place appropriately. Basically the last two numbers entered end up to the right of the decimal point.
Everything works fine as long as I mouse click into the text boxes to do entry . However, if the user tabs or shift+tab into the text box the first numerical input always ends up furthest to the left which is no good.
So in the example below I can mouse click into txtFacilityEstimateAmount and enter (123456) and the output displays
1234.56. All good ! However, if I then tab into txtProjectedEstofLoss and enter (123456) and the output displays
1000234.56 . The same javascript method should be getting called ? Can someone help me understand what is going on here and why.
--Jason
<script language="javascript" type="text/javascri ...
Go to the complete details ...