Files
AVSDevR.ShinyInputs/man/updateTogglableTextInput.Rd

38 lines
1.0 KiB
R

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/toggleableTextInput.R
\name{updateTogglableTextInput}
\alias{updateTogglableTextInput}
\title{A text input with a checkbox to toggle editing}
\usage{
updateTogglableTextInput(
session,
inputId,
label = NULL,
checked = NULL,
text = NULL,
placeholder = NULL
)
}
\arguments{
\item{session}{The \code{session} object passed to function given to
\code{shinyServer}. Default is \code{getDefaultReactiveDomain()}.}
\item{inputId}{The id of the input object.}
\item{label}{The label to set for the input object.}
\item{checked}{Initial check state of the checkbox}
\item{text}{Initial value to display in the textInput}
\item{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.}
}
\description{
A text input with a checkbox to toggle editing
}
\seealso{
\code{\link[shiny:textInput]{shiny::textInput()}}, \code{\link[shiny:updateTextInput]{shiny::updateTextInput()}}
}