I am building a shiny app where there will be a tabsetPanel with three tabs (tab1, tab2, and tab3). I will have two actionButtons that will apply to all of the tabs but I don't want the actionButton inside the tabs, I would like for them to be to the far right of the tabs so now matter what tab you are in, you can see the actionButtons always. Here is some code for what I am talking about:
tabsetPanel(
tabPanel(
title = "Tab1"
)
tabPanel(
title = "Tab2"
)
tabPanel(
title = "Tab3"
)
)
And so I want these two action buttons to the far right of the tabs but outside of the tabsetPanel.
actionButton('load_inputs', 'Load inputs')
actionButton('save_inputs', 'Save inputs')
It would be nice if there is a way to just within the actionButton() function specify where you want the buttons to appear.