I am creating a shiny interface with multiple tabs and have a couple of questions:
- Is it possible to create an Action button for the user to click to refresh only the tab in which the button is placed?
- An additional question - is it possible to refresh the entire shiny app rather than just the tab once the ActionButton is clicked?
So in ui.R we have:
actionButton("RefreshViewExperiment","Refresh Experiments!")
What should the server.R code be for the above queries?