View source: R/func_render-survey.R
renderSurvey | R Documentation |
Include server-side logic for shinysurveys.
renderSurvey(df, theme = "#63B8FF")
df |
Deprecated please only place argument in
|
theme |
Deprecated please place the theme argument in
|
NA; used for server-side logic in Shiny apps.
if (interactive()) { library(shiny) library(shinysurveys) df <- data.frame(question = "What is your favorite food?", option = "Your Answer", input_type = "text", input_id = "favorite_food", dependence = NA, dependence_value = NA, required = F) ui <- fluidPage( surveyOutput(df = df, survey_title = "Hello, World!", theme = "#63B8FF") ) server <- function(input, output, session) { renderSurvey() observeEvent(input$submit, { showModal(modalDialog( title = "Congrats, you completed your first shinysurvey!", "You can customize what actions happen when a user finishes a survey using input$submit." )) }) } shinyApp(ui, server) }
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.