I was wondering if there is a way to create a "?" icon button that when clicked it shows a pop up message explaining why behind my model. Also how would I make it horizontally inline with with my numericInput widget.
fileInput("file1", "Choose CSV File",
accept = c("text/csv",
"text/comma-separated-values,text/plain",
".csv")
),
helper(shiny_tag, icon = "question-circle", colour = NULL,
type = "markdown", title = "Help", content = "Content", size= "m",
buttonLabel = "Okay", easyClose = TRUE, fade = FALSE)
The second solution I have tried was also giving me issues as well.
actionButton("show", "Show modal dialog"),
server <- function(input, output) {
observeEvent(input$show, {
showModal(modalDialog(
title = "Somewhat important message",
"This is a somewhat important message.",
easyClose = TRUE,
footer = NULL
))
})
}