listInputExtensions {shinysurveys} | R Documentation |
List all registered survey extensions
Description
List all registered survey extensions
Usage
listInputExtensions()
Value
A named list containing the registered input type and their associated functions.
Examples
if (interactive()) {
# Register a date input to {shinysurveys},
# limiting possible dates to a twenty-day period.
extendInputType("slider", {
shiny::sliderInput(
inputId = surveyID(),
label = surveyLabel(),
min = 1,
max = 10,
value = 5
)
})
# Register a slider input to {shinysurveys}
# with a custom minimum and maximum value.
extendInputType("date", {
shiny::dateInput(
inputId = surveyID(),
value = Sys.Date(),
label = surveyLabel(),
min = Sys.Date()-10,
max = Sys.Date()+10
)
})
listInputExtensions()
}
[Package shinysurveys version 0.2.0 Index]