Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upShiny: .selection=colDef(show=FALSE) not working with columnGroups #52
Comments
|
Thanks for reporting this. This was a bug that should now be fixed in the development version (4abe2d0). The problem was that there was an extra, empty column being added when using row selection + column groups. That extra column was what It's more visibly obvious with a bordered style: library(reactable)
reactable(
data.frame(x = c(1, 2, 3)),
selection = "multiple",
columnGroups = list(colGroup("group", "x")),
bordered = TRUE
) |
|
Thanks a lot! I can confirm that this bug has been fixed. |

Hi,
Thanks for this great package!
I stumbled over the following issue:
Hiding the selection column using ".selection=colDef(show=FALSE)" is not working if I also create columnGroups.
Is there any way to avoid this? Thanks in advance!