Description Usage Arguments See Also
Show / hide feedback messages.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | feedback(
inputId,
show,
text = NULL,
color = NULL,
icon = NULL,
session = shiny::getDefaultReactiveDomain()
)
feedbackWarning(
inputId,
show,
text = "Ye be warned",
color = "#F89406",
icon = shiny::icon("warning-sign", lib = "glyphicon"),
session = shiny::getDefaultReactiveDomain()
)
feedbackDanger(
inputId,
show,
text = "Danger, turn back!",
color = "#d9534f",
icon = shiny::icon("exclamation-sign", lib = "glyphicon"),
session = shiny::getDefaultReactiveDomain()
)
feedbackSuccess(
inputId,
show,
text = NULL,
color = "#5cb85c",
icon = shiny::icon("ok", lib = "glyphicon"),
session = shiny::getDefaultReactiveDomain()
)
|
inputId |
the Shiny input's |
show |
Whether or not the feedback should be shown. The 'show' argument uses 'shiny::isTruthy()' to evaluate its value to 'TRUE' or 'FALSE'. |
text |
text string to display below input |
color |
the color of the feedback |
icon |
an html icon tag |
session |
the |
showFeedback hideFeedback
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.