Files
shiny/man/tableOutput.Rd
2013-10-22 02:07:06 -05:00

25 lines
426 B
R

\name{tableOutput}
\alias{dataTableOutput}
\alias{tableOutput}
\title{Create a table output element}
\usage{
tableOutput(outputId)
dataTableOutput(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{renderTable} within an application page.
}
\examples{
mainPanel(
tableOutput("view")
)
}