-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathdrop-menu-interaction.Rd
77 lines (65 loc) · 1.71 KB
/
drop-menu-interaction.Rd
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/drop-menu.R
\name{drop-menu-interaction}
\alias{drop-menu-interaction}
\alias{enableDropMenu}
\alias{disableDropMenu}
\alias{showDropMenu}
\alias{hideDropMenu}
\title{Interact with Drop Menu}
\usage{
enableDropMenu(id, session = shiny::getDefaultReactiveDomain())
disableDropMenu(id, session = shiny::getDefaultReactiveDomain())
showDropMenu(id, session = shiny::getDefaultReactiveDomain())
hideDropMenu(id, session = shiny::getDefaultReactiveDomain())
}
\arguments{
\item{id}{Drop menu ID, the \code{tag}'s ID followed by \code{"_dropmenu"}.}
\item{session}{Shiny session.}
}
\description{
Interact with Drop Menu
}
\examples{
if (interactive()) {
library(shiny)
library(shinyWidgets)
ui <- fluidPage(
tags$h2("Drop Menu interactions"),
dropMenu(
actionButton("myid", "See what's inside"),
"Drop menu content",
actionButton("hide", "Close menu"),
position = "right middle"
),
tags$br(),
tags$p("Is drop menu opened?"),
verbatimTextOutput("isOpen"),
actionButton("show", "show menu"),
tags$br(),
tags$br(),
dropMenu(
actionButton("dontclose", "Only closeable from server"),
"Drop menu content",
actionButton("close", "Close menu"),
position = "right middle",
hideOnClick = FALSE
)
)
server <- function(input, output, session) {
output$isOpen <- renderPrint({
input$myid_dropmenu
})
observeEvent(input$show, {
showDropMenu("myid_dropmenu")
})
observeEvent(input$hide, {
hideDropMenu("myid_dropmenu")
})
observeEvent(input$close, {
hideDropMenu("dontclose_dropmenu")
})
}
shinyApp(ui, server)
}
}