View source: R/input_numberInput.R
numberInput | R Documentation |
Create an input control for entry of numeric values. This is identical to
shiny::numericInput()
but is more flexible in not requiring an initial
value and in allowing placeholders.
numberInput( inputId, label, value = NULL, min = NA, max = NA, step = NA, placeholder = NULL, width = NULL )
inputId |
The |
label |
Display label for the control, or |
value |
Initial value. NULL by default. |
min |
Minimum allowed value |
max |
Maximum allowed value |
step |
Interval to use when stepping between min and max |
placeholder |
A character string giving the user a hint as to what can be entered into the control. Internet Explorer 8 and 9 do not support this option. |
width |
The width of the input, e.g. |
A numeric input control that can be added to a UI definition.
A numeric vector of length 1.
shiny::updateNumericInput()
if (interactive()) { library(shiny) library(shinysurveys) ui <- fluidPage( numberInput("obs", "Observations:", placeholder = "How many do you see?", min = 1, max = 100), verbatimTextOutput("value") ) server <- function(input, output) { output$value <- renderText({ input$obs }) } shinyApp(ui, server) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.