Files
shiny/man/tabsetPanel.Rd
Winston Chang 6715dc2a5d Merge pull request #139 from wch/set-input
Add ability to set inputs from server
2013-04-17 14:58:14 -07:00

45 lines
1.2 KiB
R

\name{tabsetPanel}
\alias{tabsetPanel}
\title{Create a tabset panel}
\usage{
tabsetPanel(..., id = NULL, selected = NULL)
}
\arguments{
\item{...}{\code{\link{tabPanel}} elements to include in
the tabset}
\item{id}{If provided, you can use
\code{input$}\emph{\code{id}} in your server logic to
determine which of the current tabs is active. The value
will correspond to the \code{value} argument that is
passed to \code{\link{tabPanel}}.}
\item{selected}{The \code{value} (or, if none was
supplied, the \code{title}) of the tab that should be
selected by default. If \code{NULL}, the first tab will
be selected.}
}
\value{
A tabset that can be passed to \code{\link{mainPanel}}
}
\description{
Create a tabset that contains \code{\link{tabPanel}}
elements. Tabsets are useful for dividing output into
multiple independently viewable sections.
}
\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{tabPanel}}, \code{\link{updateTabsetPanel}}
}