mirror of
https://github.com/rstudio/shiny.git
synced 2026-01-13 08:57:57 -05:00
52 lines
1.5 KiB
R
52 lines
1.5 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/bootstrap.R
|
|
\name{tabPanel}
|
|
\alias{tabPanel}
|
|
\alias{tabPanelBody}
|
|
\title{Create a tab panel}
|
|
\usage{
|
|
tabPanel(title, ..., value = title, icon = NULL)
|
|
|
|
tabPanelBody(value, ..., icon = NULL)
|
|
}
|
|
\arguments{
|
|
\item{title}{Display title for tab}
|
|
|
|
\item{...}{UI elements to include within the tab}
|
|
|
|
\item{value}{The value that should be sent when \code{tabsetPanel} reports
|
|
that this tab is selected. If omitted and \code{tabsetPanel} has an
|
|
\code{id}, then the title will be used.}
|
|
|
|
\item{icon}{Optional icon to appear on the tab. This attribute is only
|
|
valid when using a \code{tabPanel} within a \code{\link[=navbarPage]{navbarPage()}}.}
|
|
}
|
|
\value{
|
|
A tab that can be passed to \code{\link[=tabsetPanel]{tabsetPanel()}}
|
|
}
|
|
\description{
|
|
Create a tab panel
|
|
}
|
|
\section{Functions}{
|
|
\itemize{
|
|
\item \code{tabPanel()}: Create a tab panel that can be included within a \code{\link[=tabsetPanel]{tabsetPanel()}} or a \code{\link[=navbarPage]{navbarPage()}}.
|
|
|
|
\item \code{tabPanelBody()}: Create a tab panel that drops the title argument.
|
|
This function should be used within \code{tabsetPanel(type = "hidden")}. See \code{\link[=tabsetPanel]{tabsetPanel()}} for example usage.
|
|
|
|
}}
|
|
\examples{
|
|
# Show a tabset that includes a plot, summary, and
|
|
# table view of the generated distribution
|
|
mainPanel(
|
|
tabsetPanel(
|
|
tabPanel("Plot", plotOutput("plot")),
|
|
tabPanel("Summary", verbatimTextOutput("summary")),
|
|
tabPanel("Table", tableOutput("table"))
|
|
)
|
|
)
|
|
}
|
|
\seealso{
|
|
\code{\link[=tabsetPanel]{tabsetPanel()}}
|
|
}
|