2
私はダッシュボード上で作業しています。私は動的なポップアップを作成したい、つまり移動できます。 RShinyの動的ポップアップ(移動可能)
...私は1つは、それを取ると、左、右、に移動できることを好きで、私のポップアップの例を私はポップアップを作成することができますが、この1つは静的である:library(shiny)
library(shinyBS)
shinyApp(
ui =
fluidPage(
sidebarLayout(
box(actionButton("tabBut", "View Table")),
mainPanel(
bsModal("modalExample", "Data Table", "tabBut", size = "large",
dataTableOutput("distTable"))))),
server =
function(input, output, session) {
output$distTable <- renderDataTable({
x <- faithful[, 2]
bins <- seq(min(x), max(x), length.out = 30 + 1)
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))}
)
そして、私はこのウィンドウを移動することができます。 あなたが変更するオプションのアイデアを持っている場合、またはBS以外の任意の手段を知っていれば、新しいウィンドウを作成することができます...
ありがとう、私の英語のために申し訳ありません!
チェックアウト[superzipの例](http://shiny.rstudio.com/gallery/superzip-example.html)を見て、彼らが 'absolutePa 'draggable = T'を追加することができます。最小限の労力であなたが探しているものを提供する必要があります。 – brittenb
本当にありがとうございますabsolutePanelも動作します。 – CClaire