checkboxInput {nextGenShinyApps} | R Documentation |
Create an advanced checkbox input
Description
Modifications to checkboxinput to allow added styles
Usage
checkboxInput(inputId, label, value = FALSE, width = NULL, inline = FALSE)
Arguments
inputId |
The identification name |
label |
The label for the input |
value |
The current value of the input |
width |
width of the text input |
inline |
make inline or block format |
Value
HTML elements of a checkbox
Note
For more information on the features of the form, visit the examples section of the help documentation
Examples
checkboxInput("somevalue", "Some value", FALSE)
checkboxInput("somevalue", "Some value", value = FALSE, inline = TRUE)
checkboxInput("somevalue", "Some value", FALSE)
[Package nextGenShinyApps version 2.1 Index]