I have a shiny dashboard which has a leaflet map in the main panel and some data on absolutePanel (id="controls"). I have some selectInputs. Based on one of the values of the dropdown/selectinput, I want to hide the absolutePanel.
SelectInput details: Id: selectme choices: c("--","a","b","c")
I want something like, if(input$selectme=="--", hide(absolutePanel(id-"controls"))
How do I do this?