Hi @aleksandra_budnik, I am trying to make one column as numeric in edit mode(should only accept numbers [int/float]).
-
It does work when we implement it like this
hot1 = new Handsontable(example1, {
data: getCarData(),
colHeaders: [‘Car’, ‘Year’, ‘Chassis color’, ‘Bumper color’],
columns: [
{type: ‘numeric’},
]; -
But when I try the same as a setting in HotColumn, it doesn’t. Can you please assist. Here’s a sample - (have made column 3 as numeric)
https://codesandbox.io/s/object-data-source-forked-6m0vh?file=/src/index.js