require(shiny)
require(hrimodules)
ui<-fluidPage(select_ui("test"),
h4("Underlying Select Value"),
textOutput("values"))
server<-function(input,output,session){
select<-callModule(select_server,id="test")
output[['values']]<-renderText({
req(!is.null(select$selected()))
select$selected()})
}
shinyApp(ui,server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.