Closed DillonHammill closed 3 years ago
Turns out this is due to rhandsontable
converting NA values to FALSE for checkbox columns. I have pushed a fix to my rhandsontable
fork that bypasses this conversion when the column is contains only NA values.
devtools::install_github("DillonHammill/rhandsontable")
It seems that there may be an issue when rows are added after columns have been added - the values in the added columns change to FALSE. I suspect that this is a
rhandsontable
issue that is caused by the new row setting anNA
in the created columns where ahandsontable
column type has been set. This doesn't seem to happen all the time, for example in my docker images withrhandsontable 0.3.7
everything works as expected.If this becomes an issue for users I will need to look into the
rhandsontable
code to figure out why this is happening.