mirror of
https://github.com/rstudio/shiny.git
synced 2026-04-07 03:00:20 -04:00
roxygenize
This commit is contained in:
@@ -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.
|
||||
|
||||
@@ -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.}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user