hi
I have a field like double and its a value 1.845,55
I convert to it $("#TOT").val().replace(',','.') and its result is 1.845.55
if I post the Controller like this its seems 0
if I parseFloat(tt) its seem 1845
So decimal place not show.
var t = $("#TOT").val(); =1.845,55
var tt = $("#TOT").val().replace(',','.'); =1.845.55