【发布时间】:2017-11-27 08:20:24
【问题描述】:
我目前正在开发一个闪亮的应用程序。我在水平放置元素时遇到了问题。
使用的RCode如下:
ui <- fluidPage(
fluidRow(
column(3,
selectizeInput("proj1", NULL,
choices = Dummy$Project_1, width = "300px",
options = list(
placeholder = "Additional Projects",
onInitialize = I('function() { this.setValue(""); }')
)
)),
column(3, textAreaInput("col11","", width = "200px", height = "43px")),
column(3, textAreaInput("col12","", width = "200px", height = "43px")),
column(3, textAreaInput("col13","", width = "200px", height = "43px"))
)
)
server <- function(input, output){}
shinyApp(ui = ui, server = server)
输出如下:
谁能帮我解决这个问题?
【问题讨论】: