I'm a Shiny newbie, so probably mine is a simple question but can't find anybody else asking something similar here on stackoverflow.com. I would need to build an app with more than 12 columns. So my question is, how can I have more than 12 textInput elements on the same row and make their width a little bit tighter? This is my sample code.
library(shiny)
u <- fluidPage(
titlePanel("Simple Selectable Reactive Function"),
sidebarLayout(
sidebarPanel(),
mainPanel(
h2("Results"),
fluidRow(column(1,
textInput("input_ID", label = "text 1",
value = "123")),
column(1,
textInput("input_ID", label = "text 2",
value = "123")),
column(1,
textInput("input_ID", label = "text 3",
value = "123")),
column(1,
textInput("input_ID", label = "text 4",
value = "123")),
column(1,
textInput("input_ID", label = "text 5",
value = "123")),
column(1,
textInput("input_ID", label = "text 6",
value = "123")),
column(1,
textInput("input_ID", label = "text 7",
value = "123")),
column(1,
textInput("input_ID", label = "text 8",
value = "123")),
column(1,
textInput("input_ID", label = "text 9",
value = "123")),
column(1,
textInput("input_ID", label = "text 10",
value = "123")),
column(1,
textInput("input_ID", label = "text 11",
value = "123")),
column(1,
textInput("input_ID", label = "text Inp 12",
value = "123")),
column(1,
textInput("input_ID", label = "text Inp 13",
value = "123"))
)
)
)
)
s <- function(input,output){}
shinyApp(ui=u,server=s)
thank you for the help.