I have a datagrid and I get 2 column's value by javascript. These fields are numeric and when fields have comma (ex. 554,20), I cant get the numbers after comma. I tried parseInt, parseFloat. How can I solve it?
|
1
|
|
|
|
|
|
If they're meant to be separate values, try this:
If they're meant to be a single value (like in French, where one-half is written 0,5)
|
||||
|
|
|
Replace the comma with a dot. This will only return 554:
This will return 554.20:
So in the end, you can simply use:
Don't forget that |
|||
|
|
