0

shinythemes私が構築するアプリでは、このライブラリをかなり広範囲に使用しています。bsModal私はパッケージからを活用しようとしていましshinyBSたが、「フェードイン」divが消えず、何もクリックできないため、使用できないWebアプリが残っていることに気付きました。

すべての例はshinyBS::bsModal正常に機能します (sans-shinythemes です)。モーダルを使用しながら、テーマを引き続き使用するにはどうすればよいですか?

サンプルアプリ:

library(shiny)
library(shinyBS)
library(shinythemes)

app = shinyApp(
  ui =
    navbarPage(title=NULL,
      id="navbar",
      theme = shinytheme("journal"),
      tabPanel("test",
        column(1),
        column(3,
          sliderInput("bins",
            "Number of bins:",
            min = 1,
            max = 50,
            value = 30),
          actionButton("tabBut", "View Table")
        ),
        column(7,
          plotOutput("distPlot"),
          bsModal("modalExample", "Data Table", "tabBut", size = "large",
            dataTableOutput("distTable"))
        )
      )
    ),
  server =
    function(input, output, session) {

      output$distPlot <- renderPlot({

        x    <- faithful[, 2]
        bins <- seq(min(x), max(x), length.out = input$bins + 1)

        # draw the histogram with the specified number of bins
        hist(x, breaks = bins, col = 'darkgray', border = 'white')

      })

      output$distTable <- renderDataTable({

        x    <- faithful[, 2]
        bins <- seq(min(x), max(x), length.out = input$bins + 1)

        # draw the histogram with the specified number of bins
        tab <- hist(x, breaks = bins, plot = FALSE)
        tab$breaks <- sapply(seq(length(tab$breaks) - 1), function(i) {
          paste0(signif(tab$breaks[i], 3), "-", signif(tab$breaks[i+1], 3))
        })
        tab <- as.data.frame(do.call(cbind, tab))
        colnames(tab) <- c("Bins", "Counts", "Density")
        return(tab[, 1:3])

      }, options = list(pageLength=10))

    }
)

runApp(app)
4

1 に答える 1

0

競合の原因はわかりませんが、解決策はテーマへのリンクを直接指定することです。使用しているテーマの名前theme = shinytheme("journal")を調整して置き換えます。theme = "http://bootswatch.com/journal/bootstrap.css"

于 2016-05-06T18:27:30.230 に答える