You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello there,
I have been testing the library shinyWidgets in an application that uses bslib to customize the ui. If I use bootstrap version = 4 the justified parameter of radioGroupButtons does not work. A similar problem is observed for checkboxGroupButtons.
hello Victor
thank you so much for your reply. I install shinyWidgets from github and this solved the problem. However this test made me discover another problem. When justified = TRUE the option individual doesn't work (both for bs3 and bs4) : no margin is visible between buttons for radioGroupButtons and checkboxGroupButtons.
Here is an example in case of :
Hello there,
I have been testing the library shinyWidgets in an application that uses bslib to customize the ui. If I use bootstrap version = 4 the justified parameter of radioGroupButtons does not work. A similar problem is observed for checkboxGroupButtons.
Here is an example :
ui<-shiny::fluidPage(
theme = bslib::bs_theme(version = 4),
shinyWidgets::radioGroupButtons(
inputId = "Id066",
label = "Label",
choices = c("A", "B", "C"),
justified = TRUE,
status = "danger"
)
)
server <- function(input, output, session) { }
shiny::shinyApp(ui = ui, server = server)
Many thanks in advance
The text was updated successfully, but these errors were encountered: