roxygenize

This commit is contained in:
Yihui Xie
2014-05-16 23:16:59 -05:00
parent 831fba9a53
commit 18e85c32b4
2 changed files with 9 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
selectInput(inputId, label, choices, selected = NULL, multiple = FALSE,
selectize = TRUE)
selectizeInput(inputId, ..., options = NULL)
selectizeInput(inputId, ..., options = NULL, width = NULL)
}
\arguments{
\item{inputId}{Input variable to assign the control's value to}
@@ -31,6 +31,8 @@ for single-select lists and no values for multiple select lists.}
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.}
}
\value{
A select list control that can be added to a UI definition.

View File

@@ -5,7 +5,8 @@
\title{Slider Input Widget}
\usage{
sliderInput(inputId, label, min, max, value, step = NULL, round = FALSE,
format = "#,##0.#####", locale = "us", ticks = TRUE, animate = FALSE)
format = "#,##0.#####", locale = "us", ticks = TRUE, animate = FALSE,
width = NULL)
animationOptions(interval = 1000, loop = FALSE, playButton = NULL,
pauseButton = NULL)
@@ -45,8 +46,10 @@ details.}
according to some simple heuristics.}
\item{animate}{\code{TRUE} to show simple animation controls with default
settings; \code{FALSE} not to; or a custom settings list, such as those
created using \code{animationOptions}.}
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.}