Hi Team,
Is it possible to use the thousands separator in the editor for numeric cell. Actually when I copy paste the numeric values as per the below ( included thousands separator “,”) from excel to Handsontable grid:
5,000
2,500
3,700
After paste values populated in numeric cell as per the below:
5
2.5
3.7
It replace the “,” with “.”
I have used below configuration for Numeric column:
{
data: ColumnName ,
type: ‘numeric’,
numericFormat: {
pattern: ‘0,0’,
culture: ‘en-US’
}
}
Can you please help me to resolve this issue?
Thanks!