Hello,
In a conditionalPanel in ui.R, I'd like to have a condition such as :
conditionalPanel(condition= "input$tabset %in% c('A','B')", ...
but here my condition input$tabset %in% c('A','B') is written in R syntax. Is it possible to write it as a Javascript expression ?
(otherwise I know I can use a dynamic UI, but I'd like not to use one).