I have checkboxGroup with selected items, and actionButton. I need on actionButton click uncheck checkBoxGroup.
wellPanel(
checkboxGroupInput(datename, "Select dates:", some_dates,
selected = outlier_dates_to_select),
actionButton("buttonname", "Uncheck all")
)
Any suggestions, how I can manage that?
Thank you a lot!