-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathupdatePrettyToggle.Rd
64 lines (53 loc) · 1.26 KB
/
updatePrettyToggle.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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/input-pretty.R
\name{updatePrettyToggle}
\alias{updatePrettyToggle}
\title{Change the value of a pretty toggle on the client}
\usage{
updatePrettyToggle(
session = getDefaultReactiveDomain(),
inputId,
label = NULL,
value = NULL
)
}
\arguments{
\item{session}{The session object passed to function given to shinyServer.}
\item{inputId}{The id of the input object.}
\item{label}{The label to set for the input object.}
\item{value}{The value to set for the input object.}
}
\description{
Change the value of a pretty toggle on the client
}
\examples{
library(shiny)
library(shinyWidgets)
ui <- fluidPage(
tags$h1("Pretty toggle update value"),
br(),
prettyToggle(
inputId = "toggle1",
label_on = "Checked!",
label_off = "Unchecked..."
),
verbatimTextOutput(outputId = "res1"),
radioButtons(
inputId = "update",
label = "Value to set:",
choices = c("FALSE", "TRUE")
)
)
server <- function(input, output, session) {
output$res1 <- renderPrint(input$toggle1)
observeEvent(input$update, {
updatePrettyToggle(
session = session,
inputId = "toggle1",
value = as.logical(input$update)
)
})
}
if (interactive())
shinyApp(ui, server)
}