Hello,
I would like to set european format for numbers (comma instead dot) during first initialization of the handsontable object. I used a following code:
culture: "de-DE",
format: '0.0,00',
pattern: '0.0,00',
Example:
https://jsfiddle.net/janzitniak/bawt3h2e/11/
But in C1 cell I see 0.5 instead 0,5.
EDIT: I know, it’s possible to set up each column like this:
columns: [
{
data: 'price_eur',
type: 'numeric',
numericFormat: {
pattern: '0,0.00 $',
culture: 'de-DE' // use this for EUR (German),
// more cultures available on http://numbrojs.com/languages.html
}
}
]
but I would like to type there any text too, then I get an error.
Jan