jrowen/rhandsontable

Logical checkbox not showing on the rhandsontable output

thevoiceofdoom opened this issue · 2 comments

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)

Issue is only on macOS 10.13. Works fine on windows