I was wondering if it is possible to add more than one condition to a conditionalPanel brilliant. This is an example:
conditionalPanel(condition = "input.SELECT == 1", #Slider sliderInput("D_FLAG", "Parameter X:", min = 0.001, max = 3, value = 1.38, step = 0.1))
I want to add another condition (except input.SELECT==1 ). I tried this, but it did not work.
conditionalPanel(condition = c("input.SELECT == 1","input.FED==2"), #Slider sliderInput("D_FLAG", "Parameter X:", min = 0.001, max = 3, value = 1.38, step = 0.1))
but it didn’t work. I would appreciate if someone could correctly enter some input to include several conditions in the conditionalPanel above.
source share