I can get the grouped checkboxes to show up in a panel in my app. How then do I observe when a user checks/unchecks one of the checkboxes in the group?
In a regular checkbox, I have the liberty to define the inputId:
checkboxInput(inputId = "checkbox1", label = "Checkbox 1", value = FALSE)
... and retrieve shinyServer() with:
input$checkbox1
How do I access selected/unselected checkboxes form a group of checkboxes (checkboxesGroupInput())?
- Dan