shinybootstrap2 (version 0.2.1)

sliderInput: Slider Input Widget

Description

Constructs a slider widget to select a numeric value from a range.

Usage

sliderInput(inputId, label, min, max, value, step = NULL, round = FALSE, format = "#,##0.#####", locale = "us", ticks = TRUE, animate = FALSE, width = NULL)
animationOptions(interval = 1000, loop = FALSE, playButton = NULL, pauseButton = NULL)

Arguments

inputId
Specifies the input slot that will be used to access the value.
label
A descriptive label to be displayed with the widget, or NULL.
min
The minimum value (inclusive) that can be selected.
max
The maximum value (inclusive) that can be selected.
value
The initial value of the slider. A numeric vector of length one will create a regular slider; a numeric vector of length two will create a double-ended range slider. A warning will be issued if the value doesn't fit between min and max.
step
Specifies the interval between each selectable value on the slider (NULL means no restriction).
round
TRUE to round all values to the nearest integer; FALSE if no rounding is desired; or an integer to round to that number of digits (for example, 1 will round to the nearest 10, and -2 will round to the nearest .01). Any rounding will be applied after snapping to the nearest step.
format
Customize format values in slider labels. See https://code.google.com/p/jquery-numberformatter/ for syntax details.
locale
The locale to be used when applying format. See details.
ticks
FALSE to hide tick marks, TRUE to show them according to some simple heuristics.
animate
TRUE to show simple animation controls with default settings; FALSE not to; or a custom settings list, such as those created using animationOptions.
width
The width of the input, e.g. '400px', or '100%'; see validateCssUnit.
interval
The interval, in milliseconds, between each animation step.
loop
TRUE to automatically restart the animation when it reaches the end.
playButton
Specifies the appearance of the play button. Valid values are a one-element character vector (for a simple text label), an HTML tag or list of tags (using tag and friends), or raw HTML (using HTML).
pauseButton
Similar to playButton, but for the pause button.

Details

Valid values for locale are:
Arab Emirates
"ae"
Australia
"au"
Austria
"at"
Brazil
"br"
Canada
"ca"
China
"cn"
Czech
"cz"
Denmark
"dk"
Egypt
"eg"
Finland
"fi"
France
"fr"
Germany
"de"
Greece
"gr"
Great Britain
"gb"
Hong Kong
"hk"
India
"in"
Israel
"il"
Japan
"jp"
Russia
"ru"
South Korea
"kr"
Spain
"es"
Sweden
"se"
Switzerland
"ch"
Taiwan
"tw"
Thailand
"th"
United States
"us"
Vietnam
"vn"

See Also

updateSliderInput

Other input.elements: checkboxGroupInput; checkboxInput; dateInput; dateRangeInput; numericInput; radioButtons; selectInput, selectizeInput; submitButton; textInput