We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Seems uiOutput not processed when placed in the bs4DashControlbar.
uiOutput
bs4DashControlbar
Minimal example:
library(shiny) library(bs4Dash) shinyApp( ui = bs4DashPage( title = "Test download", navbar = bs4DashNavbar( h3("Test", style = "color: white; margin-bottom: 0px;") ), sidebar = bs4DashSidebar( bs4SidebarMenu( bs4SidebarMenuItem( "Test", tabName = "test", icon = "truck-moving" ) ) ), controlbar = bs4DashControlbar( dateRangeInput("dd1", "r1"), uiOutput("test") ), body = bs4DashBody() ), server = function(input, output, session) { output$test <- renderUI({ dateRangeInput("dd2", "r2") }) } )
The text was updated successfully, but these errors were encountered:
79c5cfd
No branches or pull requests
Hi,
Seems
uiOutput
not processed when placed in thebs4DashControlbar
.Minimal example:
The text was updated successfully, but these errors were encountered: