Hi, I don't think this is an issue with reactable, but I'm raising it just in case of further problems.
Since the version of htmlwidgets was updated from 1.6.2 to 1.6.3 on November 22, my custom Javascript function in onClick is not working.
library(reactable)
reactable(iris[1:5, ],
selection = "single",
onClick = JS("function(row, column, rowInfo) {
console.log('asdf');
row.toggleRowSelected();
}")
)
This code selects a row when the table is clicked and outputs a log named asdf. (htmlwidgets 1.6.2)
However, if you are using the htmlwidgets 1.6.3 version, the click will not select the row and output a log.
I think user should not using 1.6.3 version until this problem solved.
Thanks.