showAlert: Show or remove an alert

Description Usage Arguments Value See Also

View source: R/utils_interface.R

Description

Show or remove an alert

Usage

 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
36
37
38
39
showAlert(
  session,
  ...,
  title,
  style = NULL,
  dismissible = TRUE,
  alertId = "alert",
  iconName = NULL,
  caller = NULL
)

successAlert(
  session,
  ...,
  title = NULL,
  dismissible = TRUE,
  alertId = "success",
  caller = NULL
)

errorAlert(
  session,
  ...,
  title = NULL,
  dismissible = TRUE,
  alertId = "alert",
  caller = NULL
)

warningAlert(
  session,
  ...,
  title = NULL,
  dismissible = TRUE,
  alertId = "alert",
  caller = NULL
)

removeAlert(output, alertId = "alert")

Arguments

session

Shiny session

...

Arguments to render as elements of alert

title

Character: title

style

Character: style (error, warning or NULL)

dismissible

Boolean: is the alert dismissible?

alertId

Character: identifier

iconName

Character: icon name

caller

Character: caller module identifier

output

Shiny output

Value

NULL (function is only used to modify the Shiny session's state or internal variables)

See Also

showModal()


psichomics documentation built on Nov. 8, 2020, 5:44 p.m.