Handsontable can accept value as array for each cell, it will automatically to paste to string (with comma as join) for text renderer. but we can’t edit or paste value to the cell any more.
Please look at the codesandbox
https://codesandbox.io/s/handsontable-react-data-grid-hello-world-app-forked-f335p6?file=/src/constants.ts:767-784
We pass value as array for row 6 col 1 ([“Jaxbean”, “test”]) which handsantable can render correctly. but when we try to change value or paste the value to the cell, it doesn’t update value.
In our case, we implement a custom renderer for dropdown and it can be selected multiple, it works perfectly fine but only one problem we can paste the value to the dropdown that has the previous value.
Is there any workaround ?