View Single Post
  #2 (permalink)  
Old December 18th, 2006, 09:23 AM
amitpattjoshi amitpattjoshi is offline
Registered User
 
Join Date: Dec 2006
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I don't know the exact reason why this may happen,but While working in my application i also come up with the same problem and solve it by rounding up in javascript.

x = parseFloat(13.6);
y = ...

total = x+y...

This solves the issue for me...

total = Math.round(total*100)/100



Reply With Quote