David Barkemeyer

Results 4 issues of David Barkemeyer

I couldn't find any variable in `bs4dash_vars` for setting the background color of the navbar. I'd have expected something like `navbar-light-bg` and `navbar-dark-bg`. Currently the `status` of the navbar is...

question

Reproducible example: ```r library(shiny) library(bs4Dash) shinyApp( ui = dashboardPage( header = dashboardHeader(), sidebar = dashboardSidebar(sidebarMenuOutput("sidebar_menu")), body = dashboardBody( shiny::actionButton("update", "Update") ) ), server = function(input, output) { sidebar_menu_r

bug
help wanted

`popover()` and `tooltip()` both assume that the tag they are applied to has an `id` attribute. This should be either documented or maybe it might be possible to bind all...

This pull requests adds the option `nullOnKeyRelease` to `keysInput` and `addKeys`. If this option is set, the Shiny input will be set to `NULL` after any of the bound keys...