Hi,
I want to disable few choices of a
checkboxGroupInput.
I am trying to use an id of the choices to disable it, but it's not working. Below is the cove I am trying:
ui.R
checkboxGroupInput("chkilcounty", label = h5("County", style="font-size: 15.0px;"),
choices = list(" " = "Summary", " " = "ELT", " " = "AEP", " " = "OEP",, " " = "AAL", " " = "PLT"),
selected = NULL),
server.R
shinyjs::disable("Summary")
Note: choices labels are kept blank intentionally, as we do not want to display anything on the screen.
Any help or pointers would be really appreciated.
Thank you,
Manali