This is what works as expected:
This parseFloat(newValue).toLocaleString("de-DE", { minimumFractionDigits: 2, maximumFractionDigits: 2 })
will result in a String: "34.886,55"
This does not work as expected:
For parseFloat("34.886,55")
I get a Number, but I lost everything after the comma: 34.886
.
How can I fix this problem ?