Added limited documentation to the inputs
This commit is contained in:
44
man/updateBetterDateRangeInput.Rd
Normal file
44
man/updateBetterDateRangeInput.Rd
Normal file
@@ -0,0 +1,44 @@
|
||||
% Generated by roxygen2: do not edit by hand
|
||||
% Please edit documentation in R/betterDateRangeInput.R
|
||||
\name{updateBetterDateRangeInput}
|
||||
\alias{updateBetterDateRangeInput}
|
||||
\title{Improved shiny dateRangeInput}
|
||||
\usage{
|
||||
updateBetterDateRangeInput(
|
||||
session,
|
||||
inputId,
|
||||
label = NULL,
|
||||
min = NULL,
|
||||
max = NULL,
|
||||
start = NULL,
|
||||
end = 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{start}{The initial start 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.}
|
||||
|
||||
\item{end}{The initial end 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 dateRangeInput
|
||||
}
|
||||
\seealso{
|
||||
\code{\link[shiny:dateRangeInput]{shiny::dateRangeInput()}}, \code{\link[shiny:updateDateRangeInput]{shiny::updateDateRangeInput()}}
|
||||
}
|
||||
Reference in New Issue
Block a user