I am developing a shiny application in which I use tabsetPanel
, which is generated when user enters some particular input. Thus, I want to use renderUI
function to make a tabsetPanel appear / disappear.
My struggle now is that number of tabPanel
elements (arguments of tabsetPanel
) also depends on user input, in the way: sometimes I need 1 one, other times I want more tabPanels
.
How to make it? I tried including conditionPanel
or including simple if()...
condition in the tabsetPanel
argument, but it (rather not surprisingly...) did not work.