Description Usage Value See Also Examples
View source: R/extend_shinysurveys.R
surveyLabel() is a helper function for extendInputType. When
defining custom input types, the label argument for shiny UI components
should equal surveyLabel(). It essentially takes on the value in the
"question" column in the data supplied to surveyOutput. See
examples for more details.
1 |
NA; used for side effects with extendInputType.
1 2 3 4 5 6 7 8 9 | extendInputType("slider", {
shiny::sliderInput(
inputId = surveyID(),
label = surveyLabel(),
min = 1,
max = 10,
value = 5
)
})
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.