Added limited documentation to the inputs

This commit is contained in:
2026-02-24 12:36:45 +00:00
parent c025ef8452
commit 976bb3650d
12 changed files with 451 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
% 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()}}
}