jrowen / rhandsontable

A htmlwidgets implementation of Handsontable.js
http://jrowen.github.io/rhandsontable/
Other
380 stars 147 forks source link

Logical checkbox not showing on the rhandsontable output #392

Open thevoiceofdoom opened 2 years ago

thevoiceofdoom commented 2 years ago

On running this code the logical column is blank - no ticks or check boxes. This used to work fine

library( rhandsontable ) DF = data.frame(integer = 1:10, numeric = rnorm(10), logical = c( rep(TRUE, 5), rep(FALSE, 5)) , character = LETTERS[1:10], factor = factor(letters[1:10], levels = letters[10:1], ordered = TRUE), factor_allow = factor(letters[1:10], levels = letters[10:1], ordered = TRUE), date = seq(from = Sys.Date(), by = "days", length.out = 10), stringsAsFactors = FALSE)

rhandsontable(DF, width = 600, height = 300) %>% hot_col("factor_allow", allowInvalid = TRUE)

thevoiceofdoom commented 2 years ago
image
thevoiceofdoom commented 2 years ago

Issue is only on macOS 10.13. Works fine on windows