surveyLabel: Add correct label for custom input types

Description Usage Value See Also Examples

View source: R/extend_shinysurveys.R

Description

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.

Usage

1

Value

NA; used for side effects with extendInputType.

See Also

extendInputType

surveyID

surveyOptions

Examples

1
2
3
4
5
6
7
8
9
extendInputType("slider", {
shiny::sliderInput(
  inputId = surveyID(),
  label = surveyLabel(),
  min = 1,
  max = 10,
  value = 5
)
})

shinysurveys documentation built on July 11, 2021, 9:06 a.m.