IG grid export: Formatting with for example thousand separator doesn't work.
Problem is in the function getCellNumber:
str.replace(re, ""); //remove all symbols except digits and decimalSeparator
should be
str = str.replace(re, ""); //remove all symbols except digits and decimalSeparator
Additional question:
Is it possible to keep the formatting in Excel for numbers?
For example:
555,30 becomens 555,3 in Excel
I want to keep to trailing zero.
IG grid export: Formatting with for example thousand separator doesn't work.
Problem is in the function getCellNumber: str.replace(re, ""); //remove all symbols except digits and decimalSeparator
should be str = str.replace(re, ""); //remove all symbols except digits and decimalSeparator
Additional question: Is it possible to keep the formatting in Excel for numbers? For example: 555,30 becomens 555,3 in Excel I want to keep to trailing zero.