🔍 An RStudio addin slash regex utility belt
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

41 行
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(
  8. inputId,
  9. label,
  10. value = "",
  11. width = NULL,
  12. placeholder = NULL,
  13. ...
  14. )
  15. }
  16. \arguments{
  17. \item{inputId}{The \code{input} slot that will be used to access the value.}
  18. \item{label}{Display label for the control, or \code{NULL} for no label.}
  19. \item{value}{Initial value.}
  20. \item{width}{Width of \code{shiny-input-container} div.}
  21. \item{placeholder}{A character string giving the user a hint as to what can
  22. be entered into the control. Internet Explorer 8 and 9 do not support this
  23. option.}
  24. \item{...}{Extra elements to be included in the \code{input-group} div.}
  25. }
  26. \description{
  27. Standard \code{\link[shiny:textInput]{shiny::textInput()}} with additional \code{width} parameter, added code
  28. font style for the input text and with \code{autocomplete}, \code{autocorrect},
  29. \code{autocapitalize} and \code{spellcheck} set to \code{off} or \code{false}.
  30. }
  31. \seealso{
  32. Other modified shiny inputs:
  33. \code{\link{textAreaInputAlt}()}
  34. }
  35. \concept{modified shiny inputs}