surveyID: Add correct ID for custom input types

Description Usage Value See Also Examples

View source: R/extend_shinysurveys.R

Description

surveyID() is a helper function for extendInputType. When defining custom input types, the inputId argument for shiny UI components should equal surveyID(). See examples for more details.

Usage

1

Value

NA; used for side effects with extendInputType.

See Also

extendInputType

surveyLabel

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.