I have a shiny app with a tabsetpanel which tabs are also subdivided in 2 tabs, and I wish to show a simple busyIndicator (default loading image) when shiny is busy loading data in one of the subtabs.
simplified code piece:
tabsetPanel(id = "tabs",
tabPanel(value = 3, ("Tab3"),
tabsetPanel(id = "subPanel3", position = "left",
tabPanel(value = 9, ("View"), icon = icon("eye-open", lib = "glyphicon"),
busyIndicator(text = "Loading, please wait...", wait = 400), (...)
DT::dataTableOutput("lc")
I have used this feature before but this time it is not showing and I don't know why. Has anything been changed? I don't see any needed shinySky update. Thank you!