I need to force Handsontable to display numbers with a specific format (1.000,01 for example) but it seems to ignore what I try to use as thousands separator.
I tried several ways to do that but none worked :
- Setting a format to cells that will contain numeric values
cell.format = '0.0,00'
- Setting the same format when instantiating my handsontable object
myTable.handsontable({ format: '0.0,00' })
- Create a locale for numeral.js with delimiters
{ thousands: '.', decimal: ',' }
- Changing the format used in a working jsFiddle (from handsontable doc) but I can't get the desired display
Any idea what I'm missing ?