Files
shiny/man/tableOutput.Rd
2012-07-29 07:39:44 -07:00

22 lines
375 B
R

\name{tableOutput}
\alias{tableOutput}
\title{Create a table output element}
\usage{
tableOutput(outputId)
}
\arguments{
\item{outputId}{output variable to read the table from}
}
\value{
A table output element that can be included in a panel
}
\description{
Render a \link{reactiveTable} within an application page.
}
\examples{
mainPanel(
tableOutput("view")
)
}