-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathupdate_switchInput.R
149 lines (126 loc) · 3.87 KB
/
update_switchInput.R
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
library("shiny")
library("shinyWidgets")
ui <- fluidPage(
tags$h1("Update", tags$code("switchInput")),
br(),
fluidRow(
column(
width = 4,
panel(
switchInput(inputId = "switch1"),
verbatimTextOutput(outputId = "resup1"),
tags$div(
class = "btn-group",
actionButton(inputId = "updatevaluetrue", label = "Set to TRUE"),
actionButton(inputId = "updatevaluefalse", label = "Set to FALSE")
),
heading = "Update value"
)
),
column(
width = 4,
panel(
switchInput(inputId = "switch2", label = "My label"),
verbatimTextOutput(outputId = "resup2"),
textInput(inputId = "updatelabeltext", label = "Update label:"),
heading = "Update label"
)
),
column(
width = 4,
panel(
switchInput(inputId = "switch3", onLabel = "Yeaah", offLabel = "Noooo"),
verbatimTextOutput(outputId = "resup3"),
fluidRow(
column(
width = 6,
textInput(inputId = "updateonLabel", label = "Update onLabel:")
),
column(
width = 6,
textInput(inputId = "updateoffLabel", label = "Update offLabel:")
)
),
heading = "Update onLabel & offLabel"
)
)
),
fluidRow(
column(
width = 4,
panel(
switchInput(inputId = "switch4"),
verbatimTextOutput(outputId = "resup4"),
fluidRow(
column(
width = 6,
pickerInput(inputId = "updateonStatus", label = "Update onStatus:",
choices = c("default", "primary", "success", "info", "warning", "danger"))
),
column(
width = 6,
pickerInput(inputId = "updateoffStatus", label = "Update offStatus:",
choices = c("default", "primary", "success", "info", "warning", "danger"))
)
),
heading = "Update onStatus & offStatusr"
)
),
column(
width = 4,
panel(
switchInput(inputId = "switch5"),
verbatimTextOutput(outputId = "resup5"),
checkboxInput(inputId = "disabled", label = "Disabled", value = FALSE),
heading = "Disabled"
)
)
)
)
server <- function(input, output, session) {
# Update value
observeEvent(input$updatevaluetrue, {
updateSwitchInput(session = session, inputId = "switch1", value = TRUE)
})
observeEvent(input$updatevaluefalse, {
updateSwitchInput(session = session, inputId = "switch1", value = FALSE)
})
output$resup1 <- renderPrint({
input$switch1
})
# Update label
observeEvent(input$updatelabeltext, {
updateSwitchInput(session = session, inputId = "switch2", label = input$updatelabeltext)
}, ignoreInit = TRUE)
output$resup2 <- renderPrint({
input$switch2
})
# Update onLabel & offLabel
observeEvent(input$updateonLabel, {
updateSwitchInput(session = session, inputId = "switch3", onLabel = input$updateonLabel)
}, ignoreInit = TRUE)
observeEvent(input$updateoffLabel, {
updateSwitchInput(session = session, inputId = "switch3", offLabel = input$updateoffLabel)
}, ignoreInit = TRUE)
output$resup3 <- renderPrint({
input$switch3
})
# Update onStatus & offStatus
observeEvent(input$updateonStatus, {
updateSwitchInput(session = session, inputId = "switch4", onStatus = input$updateonStatus)
}, ignoreInit = TRUE)
observeEvent(input$updateoffStatus, {
updateSwitchInput(session = session, inputId = "switch4", offStatus = input$updateoffStatus)
}, ignoreInit = TRUE)
output$resup4 <- renderPrint({
input$switch4
})
# Disabled
observeEvent(input$disabled, {
updateSwitchInput(session = session, inputId = "switch5", disabled = input$disabled)
}, ignoreInit = TRUE)
output$resup5 <- renderPrint({
input$switch5
})
}
shinyApp(ui = ui, server = server)