I have my datatype definition as follow and I am loading all numeric values
cellTypes.registerCellType('int', {
editor: Handsontable.editors.NumericEditor,
renderer: Handsontable.renderers.NumericRenderer,
className: 'htRight',
numericFormat: {
pattern: '0,0.00',
}
})
but when I check type of valueAfter change in afterchange callback it returns me the string and creates the problem on server-side sorting. How can I make it return numeric values?