Nothing
function(input, output, session) {
observeEvent(input$myPickerInput, {
if (input$myPickerInput == 'A') {
showFeedbackDanger(inputId = "myPickerInput")
} else {
hideFeedback(inputId = "myPickerInput")
}
})
observeEvent(input$myAirDatePickerInput, {
if (input$myAirDatePickerInput != Sys.Date()) {
showFeedbackDanger(
inputId = "myAirDatePickerInput",
text = 'not today'
)
} else {
hideFeedback(inputId = "myAirDatePickerInput")
}
})
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.