panel_item {teal.widgets} | R Documentation |
Panel item widget
Description
Designed to be grouped using panel_group
element. Used to handle shiny
inputs in the encoding panel.
Usage
panel_item(title, ..., collapsed = TRUE, input_id = NULL)
Arguments
title |
( |
... |
content of panel |
collapsed |
( |
input_id |
( |
Value
(shiny.tag
)
Examples
library(shiny)
panel_item(
title = "Display",
collapsed = FALSE,
checkboxGroupInput(
"check",
"Tables display",
choices = LETTERS[1:3],
selected = LETTERS[1]
),
radioButtons(
"radio",
label = "Plot type",
choices = letters[1:2],
selected = letters[1]
)
)
[Package teal.widgets version 0.4.3 Index]