R Shiny 中的内联 uiOutput
Inline uiOutput in R Shiny
我正在尝试根据用户的 selectInputs 生成一个序列。现在的问题是序列的布局是垂直的。我的问题是如何水平或内联对齐它们。我尝试将 uiOutput 设置为 inline=TRUE,但它没有按预期工作。之前在 shiny google 组中用代码 (https://groups.google.com/forum/#!searchin/shiny-discuss/inline$20uioutput%7Csort:date/shiny-discuss/WD9jh_mHArM/_bYFR_MVBgAJ) 提出了类似的问题,它使用的用户界面与 add/remove 中的字母略有不同我的情况。
library(shiny)
sequence <- letters[1:20]
ui <- fluidPage(
h2("Sequence Length:"),
fluidRow(column(width=10, numericInput("seqlen", label=NULL, value=10))),
h2("Sequence:"),
fluidRow(column(width=10, uiOutput("selects")))
)
server <- function(input, output){
output$selects <- renderUI({
len <- as.integer(input$seqlen)
lapply(1:len, function(i) {
selectInput(inputId = paste0("letter", i),
label = NULL,
choices = sequence,
width="15%")
})
})
}
runApp(list(ui=ui, server=server))
这是一种可能的解决方案,我们只需将 selectInput
元素包装在列中:
library(shiny)
sequence <- letters[1:20]
ui <- fluidPage(
h2("Sequence Length:"),
fluidRow(column(width=10, numericInput("seqlen", label=NULL, value=10))),
h2("Sequence:"),
fluidRow(column(width=10, uiOutput("selects")))
)
server <- function(input, output){
output$selects <- renderUI({
len <- as.integer(input$seqlen)
lapply(1:len, function(i) {
column(width=2,
selectInput(inputId = paste0("letter", i),
label = NULL,
choices = sequence))
})
})
}
runApp(list(ui=ui, server=server))
希望对您有所帮助!
我建议在 CSS 中使用 display: inline-block
来内联 div。由于您无法真正自定义外部 selectInput
div,您可以将其包装在新的 div 中,例如
library(shiny)
sequence <- letters[1:20]
ui <- fluidPage(
h2("Sequence Length:"),
fluidRow(column(width=10, numericInput("seqlen", label=NULL, value=10))),
h2("Sequence:"),
fluidRow(column(width=10, uiOutput("selects")))
)
server <- function(input, output){
output$selects <- renderUI({
len <- as.integer(input$seqlen)
lapply(1:len, function(i) {
div(
selectInput(
inputId = paste0("letter", i),
label = NULL,
choices = sequence
),
style = "display: inline-block;"
)
})
})
}
runApp(list(ui=ui, server=server))
此处样式表可能比内联 CSS 更好,特别是如果您想自定义其他属性,如边距、宽度等。
我正在尝试根据用户的 selectInputs 生成一个序列。现在的问题是序列的布局是垂直的。我的问题是如何水平或内联对齐它们。我尝试将 uiOutput 设置为 inline=TRUE,但它没有按预期工作。之前在 shiny google 组中用代码 (https://groups.google.com/forum/#!searchin/shiny-discuss/inline$20uioutput%7Csort:date/shiny-discuss/WD9jh_mHArM/_bYFR_MVBgAJ) 提出了类似的问题,它使用的用户界面与 add/remove 中的字母略有不同我的情况。
library(shiny)
sequence <- letters[1:20]
ui <- fluidPage(
h2("Sequence Length:"),
fluidRow(column(width=10, numericInput("seqlen", label=NULL, value=10))),
h2("Sequence:"),
fluidRow(column(width=10, uiOutput("selects")))
)
server <- function(input, output){
output$selects <- renderUI({
len <- as.integer(input$seqlen)
lapply(1:len, function(i) {
selectInput(inputId = paste0("letter", i),
label = NULL,
choices = sequence,
width="15%")
})
})
}
runApp(list(ui=ui, server=server))
这是一种可能的解决方案,我们只需将 selectInput
元素包装在列中:
library(shiny)
sequence <- letters[1:20]
ui <- fluidPage(
h2("Sequence Length:"),
fluidRow(column(width=10, numericInput("seqlen", label=NULL, value=10))),
h2("Sequence:"),
fluidRow(column(width=10, uiOutput("selects")))
)
server <- function(input, output){
output$selects <- renderUI({
len <- as.integer(input$seqlen)
lapply(1:len, function(i) {
column(width=2,
selectInput(inputId = paste0("letter", i),
label = NULL,
choices = sequence))
})
})
}
runApp(list(ui=ui, server=server))
希望对您有所帮助!
我建议在 CSS 中使用 display: inline-block
来内联 div。由于您无法真正自定义外部 selectInput
div,您可以将其包装在新的 div 中,例如
library(shiny)
sequence <- letters[1:20]
ui <- fluidPage(
h2("Sequence Length:"),
fluidRow(column(width=10, numericInput("seqlen", label=NULL, value=10))),
h2("Sequence:"),
fluidRow(column(width=10, uiOutput("selects")))
)
server <- function(input, output){
output$selects <- renderUI({
len <- as.integer(input$seqlen)
lapply(1:len, function(i) {
div(
selectInput(
inputId = paste0("letter", i),
label = NULL,
choices = sequence
),
style = "display: inline-block;"
)
})
})
}
runApp(list(ui=ui, server=server))
此处样式表可能比内联 CSS 更好,特别是如果您想自定义其他属性,如边距、宽度等。