Skip to contents

This function creates a placeholder div for a reactive survey question in a Surveydown survey. It's used in conjunction with sd_question to allow for dynamic question rendering.

Usage

sd_display_question(id)

Arguments

id

A unique identifier for the question.

Value

A Shiny UI element that serves as a placeholder for the reactive question.

Examples

if (FALSE) { # \dontrun{
# Deprecated:
sd_display_question("name")

# Use instead:
sd_output("name", type = "question")
} # }