🔍 An RStudio addin slash regex utility belt
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

34 líneas
1.1KB

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/shiny_modified_inputs.R
  3. \name{textInputCode}
  4. \alias{textInputCode}
  5. \title{Modified Text Input}
  6. \usage{
  7. textInputCode(inputId, label, value = "", width = NULL,
  8. placeholder = NULL, ...)
  9. }
  10. \arguments{
  11. \item{inputId}{The \code{input} slot that will be used to access the value.}
  12. \item{label}{Display label for the control, or \code{NULL} for no label.}
  13. \item{value}{Initial value.}
  14. \item{width}{Width of \code{shiny-input-container} div.}
  15. \item{placeholder}{A character string giving the user a hint as to what can
  16. be entered into the control. Internet Explorer 8 and 9 do not support this
  17. option.}
  18. \item{...}{Extra elements to be included in the \code{input-group} div.}
  19. }
  20. \description{
  21. Standard \code{\link[shiny:textInput]{shiny::textInput()}} with additional \code{width} parameter, added code
  22. font style for the input text and with \code{autocomplete}, \code{autocorrect},
  23. \code{autocapitalize} and \code{spellcheck} set to \code{off} or \code{false}.
  24. }
  25. \seealso{
  26. Other modified shiny inputs: \code{\link{textAreaInputAlt}}
  27. }
  28. \concept{modified shiny inputs}