Description Usage Arguments Details Examples
Insert a screen output element in a shiny app UI. This must be used with a
renderUI
reactive expression in the app server.
1 2 3 4 5 6 7 8 9 |
outputId |
output variable to read the value from |
next_label |
specific label of the "next" control for this screen. If |
prev_label |
specific label of the "back" control for this screen. If |
next_condition |
condition for the "next" control to be enabled. Same syntax
as |
prev_condition |
condition for the "back" control to be enabled. Same syntax
as |
class |
screen CSS classes. |
... |
other arguments to pass to the container tag function. |
Important : for this to work, you have to add a
outputOptions(output, id, suspendWhenHidden = FALSE)
in your app
server. See example.
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 | ## Only run examples in interactive R sessions
if (interactive()) {
ui <- fixedPage(
h3("Simple shinyglide app"),
glide(
screen(
p("First screen."),
),
screenOutput("screen"),
screen(
p("Final screen."),
)
)
)
server <- function(input, output, session) {
output$screen <- renderUI({
p("Second screen.")
})
outputOptions(output, "screen", suspendWhenHidden = FALSE)
}
shinyApp(ui, server)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.