I have a shiny application that uses flexdashboard, and I have a couple of tabs that are written into the app in the form
Tab 1
===
# input controls (affect both tabs)
# plots using ggplot2
Tab 2
===
# additional input controls (only affect plots in tab 2)
# plots using ggplot2
However, whenever I create an app like this, the plots don't begin updating with their respective reactive environments until I navigate to their respective panels.
I would like to force them to all update simultaneously, or in sequence at least, without having to navigate to each different tab. Is this possible?