Added limited documentation to the inputs
This commit is contained in:
39
man/updateBetterDateInput.Rd
Normal file
39
man/updateBetterDateInput.Rd
Normal file
@@ -0,0 +1,39 @@
|
||||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/betterDateInput.R
|
||||
\name{updateBetterDateInput}
|
||||
\alias{updateBetterDateInput}
|
||||
\title{Improved shiny dateInput}
|
||||
\usage{
|
||||
updateBetterDateInput(
|
||||
session,
|
||||
inputId,
|
||||
label = NULL,
|
||||
min = NULL,
|
||||
max = NULL,
|
||||
value = 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{min}{The minimum allowed date. Either a Date object, or a string in
|
||||
\code{yyyy-mm-dd} format.}
|
||||
|
||||
\item{max}{The maximum allowed date. Either a Date object, or a string in
|
||||
\code{yyyy-mm-dd} format.}
|
||||
|
||||
\item{value}{The starting date. Either a Date object, or a string in
|
||||
\code{yyyy-mm-dd} format. If NULL (the default), will use the current date
|
||||
in the client's time zone.}
|
||||
}
|
||||
\description{
|
||||
Improved shiny dateInput
|
||||
}
|
||||
\seealso{
|
||||
\code{\link[shiny:dateInput]{shiny::dateInput()}}, \code{\link[shiny:updateDateInput]{shiny::updateDateInput()}}
|
||||
}
|
||||
Reference in New Issue
Block a user