Fix FluidRows between tabs

In shiny application , can we make the fluid rows fixed so that it appears in all subtabs. For example (refer below). In this example, the sliderInput comes only only in Subtab1, so Can we make this sliderInput fixed? so that it appears in Subtab2 as well?

tabPanel(
  "Tab",
  tabsetPanel(
    
      tabPanel(
        
      "Subtab1",
      fluidRow(
        sliderInput(............)
      ),
      fluidRow(
           ......
      )
            ),
      
      tabPanel("Subtab2",
             ...........
              )
      )
)

No.
create a slider input that controls something in one tab,
create another slider input that controls something in another tab...
this is the way :slight_smile:

Oh. thanks. But actually, only 1 sliderInput controls all tabs so :slight_smile: No worries. I will change the layout. Thanks for the suggestion

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.