In my app I would like to have a custom html button as a dropdown menu. I want to have the selected option as an input$
variable. It shall then be printed to the console. With my code I am able to detect the click but instead of printing e.g. Link 1
it returns just an empty string.
JavaScript
x
71
71
1
library(shiny)
2
3
jscode <- '
4
$("#btn3").on("click", function(){
5
Shiny.onInputChange("mydata", $("#btn3").text());
6
})
7
'
8
9
10
ui <- fluidPage(
11
HTML(
12
'<style>
13
.dropbtn {
14
background-color: #04AA6D;
15
color: white;
16
padding: 16px;
17
font-size: 16px;
18
border: none;
19
}
20
21
.dropdown {
22
position: relative;
23
display: inline-block;
24
}
25
26
.dropdown-content {
27
display: none;
28
position: absolute;
29
background-color: #f1f1f1;
30
min-width: 160px;
31
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
32
z-index: 1;
33
}
34
35
.dropdown-content a {
36
color: black;
37
padding: 12px 16px;
38
text-decoration: none;
39
display: block;
40
}
41
42
.dropdown-content a:hover {background-color: #ddd;}
43
44
.dropdown:hover .dropdown-content {display: block;}
45
46
.dropdown:hover .dropbtn {background-color: #3e8e41;}
47
</style>
48
49
50
<div class="dropdown" id = "btn1">
51
<button class="dropbtn" id = "btn2">Dropdown</button>
52
<div id = "btn3" class="dropdown-content">
53
<a href="#">Link 1</a>
54
<a href="#">Link 2</a>
55
<a href="#">Link 3</a>
56
</div>
57
</div>
58
'),
59
60
singleton(tags$script(HTML(jscode)))
61
62
)
63
64
server = function(input, output, session) {
65
observeEvent(input$mydata, {
66
67
print(paste("data is: ", input$mydata))
68
})
69
}
70
runApp(list(ui = ui, server = server))
71
Advertisement
Answer
You can do
JavaScript
1
6
1
jscode <- '
2
$("a").on("click", function(){
3
Shiny.onInputChange("mydata", $(this).text());
4
})
5
'
6
But this will also applies to other <a>
tags in the app. So you can do instead
JavaScript
1
6
1
jscode <- '
2
$(".dropdown-content a").on("click", function(){
3
Shiny.onInputChange("mydata", $(this).text());
4
})
5
'
6