Closed apalacio10 closed 3 years ago
Thanks, looks like this issue was introduced by https://github.com/rstudio/shiny/pull/3413 (it has nothing to do with bslib). Here's a more minimal example:
library(shiny)
ui <- fluidPage(
actionButton("test","Test")
)
server <- function(input, output) {
observeEvent(input$test,{
showModal(
modalDialog(
title ="Test",
size="l",
selectizeInput("bins",
"Number of bins:",
choices=c(1,2,3,4,5)),
easyClose = F)
)
})
}
shinyApp(ui = ui, server = server)
Hello,
The Z-index of modals has problems with selectizeInput in the developer version. The drop-down list appears behind the modal.