roxygenize

This commit is contained in:
Yihui Xie
2014-05-19 11:25:40 -05:00
parent 85e020a513
commit b54e5d33bc
2 changed files with 6 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
\title{Create a select list input control}
\usage{
selectInput(inputId, label, choices, selected = NULL, multiple = FALSE,
selectize = TRUE)
selectize = TRUE, width = NULL)
selectizeInput(inputId, ..., options = NULL, width = NULL)
}
@@ -32,7 +32,8 @@ for possible options (character option values inside \code{\link{I}()} will
be treated as literal JavaScript code; see \code{\link{renderDataTable}()}
for details).}
\item{width}{The width of the selectize input.}
\item{width}{The width of the input, e.g. \code{'400px'}, or \code{'100\%'};
see \code{\link{validateCssUnit}}.}
}
\value{
A select list control that can be added to a UI definition.

View File

@@ -49,8 +49,6 @@ according to some simple heuristics.}
settings; \code{FALSE} not to; or a custom settings list, such as those
created using \code{animationOptions}.}
\item{width}{The width of the slider.}
\item{interval}{The interval, in milliseconds, between each animation step.}
\item{loop}{\code{TRUE} to automatically restart the animation when it
@@ -62,6 +60,9 @@ or list of tags (using \code{\link{tag}} and friends), or raw HTML (using
\code{\link{HTML}}).}
\item{pauseButton}{Similar to \code{playButton}, but for the pause button.}
\item{width}{The width of the input, e.g. \code{'400px'}, or \code{'100\%'};
see \code{\link{validateCssUnit}}.}
}
\description{
Constructs a slider widget to select a numeric value from a range.